int mystrcmp(char *a,char *b) { while(*a) { if(*a > *b) return 1; else if(*a < *b) return -1; a++; b++; } if(*a == *b) return 0; else return -1; }