int
StrComp (
char
*s1,
*s2 )
{
i=0;
while
( s1[i]==s2[i] && s1[i]!=’\0’ ) i++;
return
( s1[i]-s2[i] );
}