]> mj.ucw.cz Git - libucw.git/blobdiff - lib/wildmatch.c
Added bit_array_assign(), replaced BIT_ARRAY_ALLOC by functions.
[libucw.git] / lib / wildmatch.c
index be98a995ded83ec068939603a3691a658d749b10..a5eb76ede41e01ac52e84e12a9fb3d3347d0a33f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *     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.
  *
@@ -10,7 +10,7 @@
  */
 
 #include "lib/lib.h"
-#include "lib/pools.h"
+#include "lib/mempool.h"
 #include "lib/wildmatch.h"
 
 #include <stdio.h>