#include <string.h>
char *strcasestr(const char *h, const char *n)
{
//FIXME!
return strstr(h, n);
}