]> mj.ucw.cz Git - libucw.git/blob - lib/patimatch.c
hashtables: fixed combination of HASH_GIVE_ALLOC and HASH_TABLE_ALLOC
[libucw.git] / lib / patimatch.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 "lib/lib.h"
11 #include "lib/chartype.h"
12
13 #define Convert(x) Cupcase(x)
14 #define MATCH_FUNC_NAME match_pattern_nocase
15
16 #include "lib/patmatch.h"