From 26f3551419d853f463e1eec42d41812b4b67f667 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 15 Feb 2011 16:08:19 -0500 Subject: prototype for gnu strcasestr (currently a stub) --- include/string.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') 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 -- cgit v1.2.1