]> mj.ucw.cz Git - libucw.git/blob - lib/patmatch.c
Add directory to all includes.
[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/lib.h"
11
12 #define Convert(x) (x)
13 #define MATCH_FUNC_NAME match_pattern
14
15 #include "lib/patmatch.h"