prototype for gnu strcasestr (currently a stub)

This commit is contained in:
Rich Felker 2011-02-15 16:08:19 -05:00
parent c0248191bd
commit 26f3551419
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ size_t strlcpy (char *, const char *, size_t);
int strcasecmp (const char *, const char *);
int strncasecmp (const char *, const char *, size_t);
char *strchrnul(const char *, int);
char *strcasestr(const char *, const char *);
#endif
#ifdef __cplusplus