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

Similar to strstr but this function ignores the case of both strings.