Prototypes for some string functions that are not part of the C standard.

This commit is contained in:
Philip Homburg 2005-07-27 11:44:26 +00:00
parent 501634d5ab
commit df1dbb4b7e

9
include/strings.h Normal file
View file

@ -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) );