]> mj.ucw.cz Git - libucw.git/blob - lib/patmatch.c
53a0710a2a46b4ae357cc1861bfa1c64fe1416bd
[libucw.git] / lib / patmatch.c
1 /*
2  *      Sherlock Library -- Shell-Like Pattern Matching (currently only '?' and '*')
3  *
4  *      (c) 1997 Martin Mares, <mj@atrey.karlin.mff.cuni.cz>
5  */
6
7 #include <stdio.h>
8 #include <string.h>
9
10 #include "lib.h"
11
12 #define Convert(x) (x)
13 #define MATCH_FUNC_NAME match_pattern
14
15 #include "patmatch.h"