12345678910111213 |
- #ifndef _COMMON_H_
- #define _COMMON_H_
- //------------------------------------------------------------------------------
- #include <stdint.h>
- //------------------------------------------------------------------------------
- void trim(char *s);
- int mystrcmp(char *p1, char *p2);
- void substr(char *dest, const char *src, uint32_t start, uint32_t cnt);
- void split(char **arr, char *str, const char *del);
- #endif /* _COMMON_H_ */
|