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 search_string(const char* heap, const char* needle){
|
||||||
int M=strlen(needle);
|
int M=strlen(needle);
|
||||||
int N=strlen(heap);
|
int N=strlen(heap);
|
||||||
|
//printf("needle:%d heap: %d\n",M,N);
|
||||||
for(int i=0;i<=N-M;i++){
|
for(int i=0;i<=N-M;i++){
|
||||||
int j;
|
int j;
|
||||||
for(j=0;j<M;j++){
|
for(j=0;j<M;j++){
|
||||||
@ -73,10 +74,8 @@ int search_string(const char* heap, const char* needle){
|
|||||||
if(j==M){
|
if(j==M){
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
else{
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
int read_pizza(struct pizza* item){
|
int read_pizza(struct pizza* item){
|
||||||
char line[LINE_SIZE];
|
char line[LINE_SIZE];
|
||||||
|
BIN
cv1/program.exe
BIN
cv1/program.exe
Binary file not shown.
Loading…
Reference in New Issue
Block a user