]> mj.ucw.cz Git - eval.git/blob - ucw/str-imatch.c
Doc: Note that Isolate has moved
[eval.git] / ucw / str-imatch.c
1 /*
2  *      UCW Library -- Shell-Like Case-Insensitive Pattern Matching (currently only '?' and '*')
3  *
4  *      (c) 1997 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #include "ucw/lib.h"
11 #include "ucw/chartype.h"
12
13 #define Convert(x) Cupcase(x)
14 #define MATCH_FUNC_NAME str_match_pattern_nocase
15
16 #include "ucw/str-match.h"