You need to determine if a string variable is a substring of another string. Which standard C library function do you use?
substring(str1, str2);
strspn(str1, str2);
strstr(str1, str2);
substr(str1, str2);