]> mj.ucw.cz Git - libucw.git/blob - lib/wildmatch.h
Defined a GET_TAGGED_CHAR macro to read our internal representation
[libucw.git] / lib / wildmatch.h
1 /*
2  *      Fast Wildcard Pattern Matcher (only `?' and `*' supported)
3  *
4  *      (c) 1999 Martin Mares <mj@ucw.cz>
5  */
6
7 struct wildpatt;
8 struct mempool;
9
10 struct wildpatt *wp_compile(byte *, struct mempool *);
11 int wp_match(struct wildpatt *, byte *);
12 int wp_min_size(byte *);