X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fwildmatch.h;h=4fa779827e44652708c4d12916310442a8e28b34;hb=116954d49373438c669eadd764e03ee8ac4211bb;hp=27a553b50d083bec9c8f51088515618a53890297;hpb=98890a92740cbfc0c5ddab9844f1ffe8d715ac8a;p=libucw.git diff --git a/lib/wildmatch.h b/lib/wildmatch.h index 27a553b5..4fa77982 100644 --- a/lib/wildmatch.h +++ b/lib/wildmatch.h @@ -1,7 +1,10 @@ /* - * Fast Wildcard Pattern Matcher (only `?' and `*' supported) + * UCW Library -- Fast Wildcard Pattern Matcher (only `?' and `*' supported) * * (c) 1999 Martin Mares + * + * This software may be freely distributed and used according to the terms + * of the GNU Lesser General Public License. */ struct wildpatt; @@ -9,3 +12,4 @@ struct mempool; struct wildpatt *wp_compile(byte *, struct mempool *); int wp_match(struct wildpatt *, byte *); +int wp_min_size(byte *);