int MGOmatch (char *string, char *pattern, int size)
The MGOmatch() function compares pattern with string. size is minimum number of characters required for an ambiguous match. Specify zero for a non-ambiguous match. The comparison is conducted case-insensitive. The pattern can contain any combination of the following wildcarding characters:
Returns 2 if the strings match exactly, 1 if the strings match up to size characters, or 0 if there is no match.