2 * Sherlock Library -- Generic Shell-Like Pattern Matching (currently only '?' and '*')
4 * (c) 1997 Martin Mares <mj@ucw.cz>
8 MATCH_FUNC_NAME(byte *p, byte *s)
20 if (z == '\\' && p[2])
25 while (*s && Convert(*s) != z)
29 if (MATCH_FUNC_NAME(p+1, s))
36 if (*p == '\\' && p[1])
38 if (Convert(*p++) != Convert(*s++))