strcasestr

Name

strcasestr -- locate a substring - ignores the case of both strings

Synopsis

#include <string.h>

char *strcasestr(const char *haystack, const char *needle);

Description

strcasestr is similar to strstr, but ignores the case of both strings.