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