This commit is contained in:
Radovan Kofira 2020-10-05 00:49:09 +02:00
parent 2c72ff9c41
commit a631cc7d3f
2 changed files with 7 additions and 8 deletions

View File

@ -61,6 +61,7 @@ void trim(char* str){
int search_string(const char* heap, const char* needle){
int M=strlen(needle);
int N=strlen(heap);
//printf("needle:%d heap: %d\n",M,N);
for(int i=0;i<=N-M;i++){
int j;
for(j=0;j<M;j++){
@ -73,10 +74,8 @@ int search_string(const char* heap, const char* needle){
if(j==M){
return i;
}
else{
}
return -1;
}
}
}
int read_pizza(struct pizza* item){
char line[LINE_SIZE];

Binary file not shown.