]>
Commit | Line | Data |
---|---|---|
36ce375d JP |
1 | #ifndef MINILIB_H |
2 | #define MINILIB_H | |
d56898ee | 3 | |
36ce375d JP |
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); | |
d56898ee | 8 | |
9 | #endif |