mirror of
https://github.com/radio95-rnt/rds95.git
synced 2026-02-27 04:43:52 +01:00
fix bugs and remove extern from header
This commit is contained in:
18
src/lib.h
18
src/lib.h
@@ -1,12 +1,16 @@
|
||||
extern void msleep(unsigned long ms);
|
||||
#include "common.h"
|
||||
#include "rds.h"
|
||||
#include <time.h>
|
||||
|
||||
extern int _strnlen(const char *s, int maxlen);
|
||||
void msleep(unsigned long ms);
|
||||
|
||||
extern uint16_t crc16_ccitt(char *data, uint16_t len);
|
||||
int _strnlen(const char *s, int maxlen);
|
||||
|
||||
uint16_t crc16_ccitt(char *data, uint16_t len);
|
||||
|
||||
uint16_t get_block_grom_group(RDSGroup *group, uint8_t block);
|
||||
|
||||
extern void add_checkwords(RDSGroup *group, uint8_t *bits);
|
||||
extern uint8_t add_rds_af_oda(RDSAFsODA *af_list, float freq);
|
||||
extern uint8_t add_rds_af(RDSAFs *af_list, float freq);
|
||||
extern char *convert_to_rdscharset(char *str);
|
||||
void add_checkwords(RDSGroup *group, uint8_t *bits);
|
||||
uint8_t add_rds_af_oda(RDSAFsODA *af_list, float freq);
|
||||
uint8_t add_rds_af(RDSAFs *af_list, float freq);
|
||||
char *convert_to_rdscharset(char *str);
|
||||
Reference in New Issue
Block a user