From: Rich Felker Date: Tue, 15 Feb 2011 21:08:19 +0000 (-0500) Subject: prototype for gnu strcasestr (currently a stub) X-Git-Tag: v0.6.0~23 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=26f3551419d853f463e1eec42d41812b4b67f667;p=oweals%2Fmusl.git prototype for gnu strcasestr (currently a stub) --- diff --git a/include/string.h b/include/string.h index 1ca02a4d..fb185372 100644 --- a/include/string.h +++ b/include/string.h @@ -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