Update cv1/program.c

This commit is contained in:
Yurii Yakovenko 2024-10-01 20:18:58 +00:00
parent caa0a26353
commit 6a1d8dad19

View File

@ -4,16 +4,17 @@
#include <string.h>
//
bool check(char* s2, char *pz)
{
{
char s[300];
if(s2==NULL || pz==NULL)
{
return false;
}
char *s=(char*) malloc(strlen(s2)+1);
if(s==NULL)
{
return false;
}
// char *s=(char*) malloc(strlen(s2)+1);
// if(s==NULL)
// {
// return false;
// }
char shifer[15]="oizeasbtbq";
for(int i = 0; s2[i]!='\0'; i++)
@ -28,7 +29,7 @@ bool check(char* s2, char *pz)
}
s[strlen(s2)]=0;
bool rez=strstr(s, pz)!=NULL;
free(s);
//free(s);
return rez;
}