SysIII/usr/src/lib/libPW/imatch.c

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

static char Sccsid[]="@(#)imatch	3.1";
/*
	initial match
	if `prefix' is a prefix of `string' return 1
	else return 0
*/

imatch(prefix,string)
register char *prefix, *string;
{
	while (*prefix++ == *string++)
		if (*prefix == 0)
			return(1);
	return(0);
}