未検証
char str1[] = "hogepiyo"; char str2[] = "gepi"; if (strstr(str1,str2) != NULL) { printf("含まれる\n"); } else { printf("含まれない\n"); }