]> mj.ucw.cz Git - libucw.git/blob - lib/patimatch.c
Signedness fixes.
[libucw.git] / lib / patimatch.c
1 /*
2  *      Sherlock Library -- Shell-Like Case-Insensitive 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 #include "string.h"
12
13 #define Convert(x) Cupcase(x)
14 #define MATCH_FUNC_NAME match_pattern_nocase
15
16 #include "patmatch.h"