IsWild = ParsePatternNoCase(Source, Dest, DestLength)
d0 D1 D2 D3
LONG ParsePatternNoCase(STRPTR, STRPTR, LONG)
Tokenizes a pattern for use by
MatchPatternNoCase(). Also indicates if there are any wildcards in the pattern (i.e. whether it might match more than one item). Note that Dest must be at least 2 times as large as Source plus 2 bytes.
For a description of the wildcards, see
ParsePattern().
ParsePatternNoCase() will 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!
In V37 this function did not always set
IoErr() to something useful on an error. Fixed in V39. In V37, it did not properly convert character-classes ([x-y]) to upper case. Workaround: convert the input pattern to upper case using ToUpper() from utility.library before calling ParsePatternNoCase(). Fixed in V39 dos.library.