replace stub with working strcasestr

This commit is contained in:
Rich Felker 2013-02-21 23:54:25 -05:00
parent 330fd96213
commit e864ddc368
1 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,9 @@
#define _GNU_SOURCE
#include <string.h>
char *strcasestr(const char *h, const char *n)
{
//FIXME!
return strstr(h, n);
size_t l = strlen(n);
for (; *h; h++) if (!strncasecmp(h, n, l)) return (char *)h;
return 0;
}