Difference for include/strutil.h from version 1.1 to 1.2


version 1.1 version 1.2
Line 2
 
Line 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

Legend:
line(s) removed in v.1.1 
line(s) changed
 line(s) added in v.1.2