]> mj.ucw.cz Git - libucw.git/blob - lib/wildmatch.h
90a64ce848a812d49d1831c5b59de5218ab00550
[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  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 struct wildpatt;
11 struct mempool;
12
13 struct wildpatt *wp_compile(byte *, struct mempool *);
14 int wp_match(struct wildpatt *, byte *);
15 int wp_min_size(byte *);