boaaa
This commit is contained in:
parent
2c72ff9c41
commit
a631cc7d3f
@ -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];
|
||||
|
BIN
cv1/program.exe
BIN
cv1/program.exe
Binary file not shown.
Loading…
Reference in New Issue
Block a user