From: Stefan E. <se...@us...> - 2003-03-17 14:59:12
|
Update of /cvsroot/blob/blob/include/blob In directory sc8-pr-cvs1:/tmp/cvs-serv20020 Modified Files: util.h Log Message: - added mamcmp Index: util.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/util.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- util.h 4 Jan 2003 02:11:42 -0000 1.12 +++ util.h 17 Mar 2003 14:59:08 -0000 1.13 @@ -44,6 +44,8 @@ void *memset(void *dest, int c, size_t n); +int memcmp(const void * cs,const void * ct,size_t count); + int strncmp(const char *s1, const char *s2, size_t maxlen); int strlen(const char *s); |