return true if equal
1 bool strcmp( char* d,char * s){
2 if( d==s) return true;
3 while( *d==*s && *d && *s){
4 d++;s++;
5 }
6 if( *d==*s && *d==0){
7 return true;
8 }
9 return false;
10 }
2 if( d==s) return true;
3 while( *d==*s && *d && *s){
4 d++;s++;
5 }
6 if( *d==*s && *d==0){
7 return true;
8 }
9 return false;
10 }