mirror of https://github.com/sfeakes/AqualinkD.git
12 lines
418 B
C
12 lines
418 B
C
#ifndef RS_MSG_UTILS_H_
|
|
#define RS_MSG_UTILS_H_
|
|
|
|
char *rsm_strstr(const char *haystack, const char *needle);
|
|
int rsm_strncpy(char *dest, const unsigned char *src, int dest_len, int src_len);
|
|
int rsm_strcmp(const char *s1, const char *s2);
|
|
int rsm_strncpy_nul2sp(char *dest, const unsigned char *src, int dest_len, int src_len);
|
|
int rsm_atoi(const char* str);
|
|
float rsm_atof(const char* str);
|
|
|
|
#endif //RS_MSG_UTILS_H_
|