Update cv1/program.c

This commit is contained in:
Yurii Yakovenko 2024-09-30 20:25:34 +00:00
parent aab3da0a10
commit db68df692e

View File

@ -18,7 +18,7 @@ bool check(char* s2, char *pz)
} }
} }
bool rez=strstr(s, pz)!=NULL; bool rez=strstr(s, pz)!=NULL;
free(s2); free(s);
return rez; return rez;
} }