SRI-NOSC/mh/subs.dir/ssequal.c

Compare this file to the similar file:
Show the results in this format:

ssequal(substr, str)
char *substr, *str;
{
	while(*substr)
		if(*substr++ != *str++)
			return(0);
	return(1);
}