]> mj.ucw.cz Git - libucw.git/blobdiff - lib/wildmatch.c
Fixed parsing of bin/config output (by TomHol in rel-3-6-1).
[libucw.git] / lib / wildmatch.c
index 5fcef8220f09e1d4ca6570531421bdaa89a33e97..a5eb76ede41e01ac52e84e12a9fb3d3347d0a33f 100644 (file)
@@ -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 <mj@ucw.cz>
+ *
+ *     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 <stdio.h>