Prototypes for some string functions that are not part of the C standard.
This commit is contained in:
parent
501634d5ab
commit
df1dbb4b7e
1 changed files with 9 additions and 0 deletions
9
include/strings.h
Normal file
9
include/strings.h
Normal 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) );
|
Loading…
Reference in a new issue