Untitled
#include<stdio.h>
#include<string.h>
int type;
char input[100000];
char *ary;
char *str1,*str2,*str3,*token,*tmp;
char *cmpStr=" ";
char *Strstr(char *a,const char *b){
int len_b = strlen(b);
while(*a){
if(strncasecmp(a,b,len_b)==0){
return a;
}
a++;
}
return NULL;
}
int main(){
str1=malloc(10000*sizeof(char));
str2=malloc(10000*sizeof(char));
str3=malloc(10000*sizeof(char));
ary=malloc(10000*sizeof(char));
memset(str1,0,sizeof(0));
memset(str2,0,sizeof(0));
memset(str3,0,sizeof(0));
gets(input);
token=strtok(input, cmpStr);
if(token!= NULL ) {
strcpy(str1,token);
token=strtok(NULL, cmpStr);
}
if(token!= NULL ) {
strcpy(str2,token);
token=strtok(NULL, cmpStr);
}
if(token!= NULL ) {
strcpy(str3,token);
token=strtok(NULL, cmpStr);
}
//printf("%s\n%s\n%s\n",str1,str2,str3);
//printf("%d\n%d\n%d\n",strlen(str1),strlen(str2),strlen(str3));
int str1Len=strlen(str1);
int str2Len=strlen(str2);
int str3Len=strlen(str3);
if(token!= NULL){
type=3;
}