1 /* 2 strings.h 3 */ 4 5 #include <minix/ansi.h> 6 7 /* Open Group Base Specifications Issue 6 (not complete) */ 8 _PROTOTYPE( char *index, (const char *_s, int _charwanted) ); 9 _PROTOTYPE( int strcasecmp, (const char *_s1, const char *_s2) ); 10 _PROTOTYPE( int strncasecmp, (const char *_s1, const char *_s2, 11 size_t _len) ); 12 _PROTOTYPE( int ffs, (int i) ); 13