match = MatchPatternNoCase(pat, str)
D0 D1 D2
BOOL MatchPatternNoCase(STRPTR, STRPTR)
Checks for a pattern match with a string. The pattern must be a tokenized string output by
ParsePatternNoCase(). This function is case-insensitive.
This function is highly recursive. You must have at least 1500 free bytes of stack to call it. It will cut off its recursion before going any deeper than that and return failure. This is _currently_ sufficient for about 100 levels deep of "#", "(", "~", etc.
MatchPatternNoCase() does not verify if sufficient stack space is available to perform its task. It is the responsibility of the caller to make sure that more than 1500 bytes of stack space will be available.
MatchPatternNoCase() may change the error code value which can be retrieved by
IoErr() if the function fails.
It is not safe to call this function from a Task!