dos.library: Fix C:AddDataTypes on OS 3.9
[AROS.git] / rom / dos / parsepatternnocase.c
blobb7db801dc171eb4a6e1a56de4d83cf35ee437f1f
1 /*
2 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
8 #include <proto/exec.h>
9 #include <proto/utility.h>
10 #include <dos/dos.h>
11 #include <dos/dosasl.h>
12 #include <dos/dosextens.h>
13 #include "dos_intern.h"
15 /*****************************************************************************
17 NAME */
18 #include <proto/dos.h>
20 AROS_LH3(LONG, ParsePatternNoCase,
22 /* SYNOPSIS */
23 AROS_LHA(CONST_STRPTR, Source, D1),
24 AROS_LHA(STRPTR, Dest, D2),
25 AROS_LHA(LONG, DestLength, D3),
27 /* LOCATION */
28 struct DosLibrary *, DOSBase, 161, Dos)
30 /* FUNCTION
31 Similar to ParsePattern(), only case insensitive (see there
32 for more information). For use with MatchPatternNoCase().
34 INPUTS
36 RESULT
38 NOTES
40 EXAMPLE
42 BUGS
44 SEE ALSO
45 ParsePattern(), MatchPatternNoCase()
47 INTERNALS
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 return patternParse(Source, Dest, DestLength, FALSE, DOSBase);
55 AROS_LIBFUNC_EXIT
56 } /* ParsePatternNoCase */