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

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