2 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
8 #include <exec/memory.h>
9 #include <proto/exec.h>
10 #include <proto/utility.h>
11 #include <dos/dosextens.h>
12 #include <dos/dosasl.h>
13 #include "dos_intern.h"
15 /*****************************************************************************
18 #include <proto/dos.h>
20 AROS_LH2(BOOL
, MatchPatternNoCase
,
23 AROS_LHA(CONST_STRPTR
, pat
, D1
),
24 AROS_LHA(CONST_STRPTR
, str
, D2
),
27 struct DosLibrary
*, DOSBase
, 162, Dos
)
31 Similar to MatchPattern(), only case insensitive (see there for
32 more information). For use with ParsePatternNoCase().
36 pat -- Pattern as returned by ParsePatternNoCase()
37 str -- String to match against the pattern 'pat'
41 Boolean telling whether the match was successful or not.
51 MatchPattern(), ParsePatternNoCase().
55 *****************************************************************************/
59 return patternMatch(pat
, str
, FALSE
, DOSBase
);
62 } /* MatchPatternNoCase */