NAME
stlmatch - match initial characters of string

SYNOPSIS
int stlmatch (big,small);
char *big,*small;

DESCRIPTION
Stlmatch returns 1 iff the initial characters of the string big are
identical with the entire string small. Otherwise, 0 is returned.

EXAMPLE
stlmatch (a,"my name is")
will return 1 iff the string a begins with the characters "my
name is".

SEE ALSO
strcmp(3), sindex(3), stablk(3), srchscore(3)