X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=miscutil.h;h=6b04adce0ae762aa30cc782abe3dfb30d3c5e838;hp=0a6b95e1c839b537720235f846872e5632e78149;hb=12f52e6af55d51d4b268af7956d97c772eebbb5c;hpb=e52df6067c712756134c5589332cc0a6936fa6f0 diff --git a/miscutil.h b/miscutil.h index 0a6b95e1..6b04adce 100644 --- a/miscutil.h +++ b/miscutil.h @@ -1,9 +1,9 @@ #ifndef _MISCUTIL_H #define _MISCUTIL_H -#define MISCUTIL_H_VERSION "$Id: miscutil.h,v 1.1 2001/05/13 21:57:06 administrator Exp $" +#define MISCUTIL_H_VERSION "$Id: miscutil.h,v 1.1.1.1 2001/05/15 13:59:00 oes Exp $" /********************************************************************* * - * File : $Source: /home/administrator/cvs/ijb/miscutil.h,v $ + * File : $Source: /cvsroot/ijbswa/current/miscutil.h,v $ * * Purpose : zalloc, hash_string, safe_strerror, strcmpic, * strncmpic, and MinGW32 strdup functions. These are @@ -37,6 +37,9 @@ * * Revisions : * $Log: miscutil.h,v $ + * Revision 1.1.1.1 2001/05/15 13:59:00 oes + * Initial import of version 2.9.3 source tree + * * *********************************************************************/ @@ -51,8 +54,8 @@ extern unsigned long hash_string(const char* s); extern char *safe_strerror(int err); -extern int strcmpic(char *s1, char *s2); -extern int strncmpic(char *s1, char *s2, size_t n); +extern int strcmpic(const char *s1, const char *s2); +extern int strncmpic(const char *s1, const char *s2, size_t n); #ifdef __MINGW32__ extern char *strdup(const char *s);