| version 1.1 | | version 1.2 |
|---|
| | |
| //declaration" warnings for the string functions in Linux | | //declaration" warnings for the string functions in Linux |
| | | |
| #ifdef __LINUX__ | | #ifdef __LINUX__ |
| extern int stricmp(char *s1, char *s2); | | extern int stricmp(const char *s1, const char *s2); |
| extern int strnicmp(char *s1, char *s2, int n); | | extern int strnicmp(const char *s1, const char *s2, int n); |
| extern void strupr(char *s1); | | extern void strupr(char *s1); |
| extern void strlwr(char *s1); | | extern void strlwr(char *s1); |
| #endif | | #endif |