]> mj.ucw.cz Git - eval.git/blob - ucw/wildmatch.h
Doc: Note that Isolate has moved
[eval.git] / ucw / wildmatch.h
1 /*
2  *      UCW Library -- 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(const char *, struct mempool *);
14 int wp_match(struct wildpatt *, const char *);
15 int wp_min_size(const char *);