diff --git a/src/sys/include/lib/string.h b/src/sys/include/lib/string.h index 9587ebf..861a887 100644 --- a/src/sys/include/lib/string.h +++ b/src/sys/include/lib/string.h @@ -36,7 +36,7 @@ extern "C" { #endif -int strcmp(char *str1, char *str2); +int strcmp(const char *str1,const char *str2); int strncmp(const char * a, const char * b, size_t c); void *memcpy(const void *dst, const void * src, size_t length); void *memset(void * dst, int c, size_t length); @@ -57,6 +57,9 @@ /*** $Log$ + Revision 1.3 2004/06/28 23:12:58 reddawg + file format now container:/path/to/file + Revision 1.2 2004/05/21 15:00:27 reddawg Cleaned up