I #include but when I call strcasestr(src, search); I get the following error message implicit declaration of function ‘strcases
#include
strcasestr(src, search);
implicit declaration of function ‘strcases
You must add:
#define _GNU_SOURCE
before the string.h include, since the function is non-standard.
string.h