2005-07-27 13:44:26 +02:00
|
|
|
/*
|
|
|
|
strings.h
|
|
|
|
*/
|
|
|
|
|
2011-01-28 12:35:02 +01:00
|
|
|
#include <minix/ansi.h>
|
2010-09-15 10:47:10 +02:00
|
|
|
|
2005-07-27 13:44:26 +02:00
|
|
|
/* 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) );
|
2006-03-24 15:03:25 +01:00
|
|
|
_PROTOTYPE( int ffs, (int i) );
|