X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=lib%2Fwildmatch.c;h=a5eb76ede41e01ac52e84e12a9fb3d3347d0a33f;hb=ff36b07f44efa12a78809ee05bd6d0c25fc60495;hp=5fcef8220f09e1d4ca6570531421bdaa89a33e97;hpb=e9aa499507f33db9fac50f3864609a6b292685e0;p=libucw.git diff --git a/lib/wildmatch.c b/lib/wildmatch.c index 5fcef822..a5eb76ed 100644 --- a/lib/wildmatch.c +++ b/lib/wildmatch.c @@ -1,13 +1,16 @@ /* - * Fast Pattern Matcher for Short Wildcard Patterns (only `?' and `*' supported) + * UCW Library -- Fast Pattern Matcher for Short Wildcard Patterns (only `?' and `*' supported) * * Traditional NFA -> DFA method with on-the-fly DFA construction. * * (c) 1999 Martin Mares + * + * This software may be freely distributed and used according to the terms + * of the GNU Lesser General Public License. */ #include "lib/lib.h" -#include "lib/pools.h" +#include "lib/mempool.h" #include "lib/wildmatch.h" #include