You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
557 B
22 lines
557 B
2 months ago
|
/*
|
||
|
* UCW Library -- Fast Wildcard Pattern Matcher (only `?' and `*' supported)
|
||
|
*
|
||
|
* (c) 1999 Martin Mares <mj@ucw.cz>
|
||
|
*
|
||
|
* This software may be freely distributed and used according to the terms
|
||
|
* of the GNU Lesser General Public License.
|
||
|
*/
|
||
|
|
||
|
#ifdef CONFIG_UCW_CLEAN_ABI
|
||
|
#define wp_compile ucw_wp_compile
|
||
|
#define wp_match ucw_wp_match
|
||
|
#define wp_min_size ucw_wp_min_size
|
||
|
#endif
|
||
|
|
||
|
struct wildpatt;
|
||
|
struct mempool;
|
||
|
|
||
|
struct wildpatt *wp_compile(const char *, struct mempool *);
|
||
|
int wp_match(struct wildpatt *, const char *);
|
||
|
int wp_min_size(const char *);
|