]> mj.ucw.cz Git - libucw.git/blob - lib/patimatch.c
New functions for manipulating attribute lists: obj_prepend_attr()
[libucw.git] / lib / patimatch.c
1 /*
2  *      Sherlock Library -- Shell-Like Case-Insensitive Pattern Matching (currently only '?' and '*')
3  *
4  *      (c) 1997 Martin Mares <mj@ucw.cz>
5  */
6
7 #include "lib/lib.h"
8 #include "lib/chartype.h"
9
10 #define Convert(x) Cupcase(x)
11 #define MATCH_FUNC_NAME match_pattern_nocase
12
13 #include "lib/patmatch.h"