diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-15 16:08:19 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-15 16:08:19 -0500 |
commit | 26f3551419d853f463e1eec42d41812b4b67f667 (patch) | |
tree | fbee70a6b8a3057aee6760a3a67e8c8d75c4c996 | |
parent | fix x86_64 wrongly reporting itself as ILP32 instead of LP64 (diff) | |
download | grovel-26f3551419d853f463e1eec42d41812b4b67f667.tar.gz grovel-26f3551419d853f463e1eec42d41812b4b67f667.tar.xz |
prototype for gnu strcasestr (currently a stub)
-rw-r--r-- | include/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |