]> mj.ucw.cz Git - libucw.git/blobdiff - lib/wildmatch.h
libucw: removed utf8_check routine... it did not check correct UTF-8
[libucw.git] / lib / wildmatch.h
index 90a64ce848a812d49d1831c5b59de5218ab00550..a429da139bcf51f241944c1ad66e413f453ff457 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *     Fast Wildcard Pattern Matcher (only `?' and `*' supported)
+ *     UCW Library -- Fast Wildcard Pattern Matcher (only `?' and `*' supported)
  *
  *     (c) 1999 Martin Mares <mj@ucw.cz>
  *
@@ -10,6 +10,6 @@
 struct wildpatt;
 struct mempool;
 
-struct wildpatt *wp_compile(byte *, struct mempool *);
-int wp_match(struct wildpatt *, byte *);
-int wp_min_size(byte *);
+struct wildpatt *wp_compile(const byte *, struct mempool *);
+int wp_match(struct wildpatt *, const byte *);
+int wp_min_size(const byte *);