From: Philip Homburg Date: Wed, 27 Jul 2005 11:44:26 +0000 (+0000) Subject: Prototypes for some string functions that are not part of the C standard. X-Git-Tag: v3.1.0~522 X-Git-Url: http://zhaoyanbai.com/repos/doxygen-warnings.log?a=commitdiff_plain;h=df1dbb4b7e2ab16b315dd2bbad783bcd4491818b;p=minix.git Prototypes for some string functions that are not part of the C standard. --- diff --git a/include/strings.h b/include/strings.h new file mode 100644 index 000000000..52bc6024b --- /dev/null +++ b/include/strings.h @@ -0,0 +1,9 @@ +/* +strings.h +*/ + +/* Open Group Base Specifications Issue 6 (not complete) */ +_PROTOTYPE( char *index, (const char *_s, int _charwanted) ); +_PROTOTYPE( int strcasecmp, (const char *_s1, const char *_s2) ); +_PROTOTYPE( int strncasecmp, (const char *_s1, const char *_s2, + size_t _len) );