]>
Commit | Line | Data |
---|---|---|
1 | #ifndef MINILIB_H | |
2 | #define MINILIB_H | |
3 | ||
4 | void memmove(void *dest, void *src, int bytes); | |
5 | int strcmp(const char *a2, const char *a1); | |
6 | void strcpy(char *a2, const char *a1); | |
7 | void tohex(char *s, unsigned long l); | |
8 | ||
9 | #endif |