xref: /minix3/include/strings.h (revision 58a2b0008e28f606a7f7f5faaeaba4faac57a1ea)
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