]> mj.ucw.cz Git - libucw.git/blob - ucw/str-match.c
Config: Added support for terabyte values, for example "123T".
[libucw.git] / ucw / str-match.c
1 /*
2  *      UCW Library -- Shell-Like Pattern Matching (currently only '?' and '*')
3  *
4  *      (c) 1997 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 #include <ucw/lib.h>
11
12 #define Convert(x) (x)
13 #define MATCH_FUNC_NAME str_match_pattern
14
15 #include <ucw/str-match.h>