minix/include/strings.h
2006-03-24 14:03:25 +00:00

11 lines
331 B
C

/*
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) );
_PROTOTYPE( int ffs, (int i) );