X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fwildmatch.h;h=a429da139bcf51f241944c1ad66e413f453ff457;hb=5635c7575119dffacda891b3f59bf3d2b839e455;hp=90a64ce848a812d49d1831c5b59de5218ab00550;hpb=49ed04e2e93a6a5b01058638224621d5c07db01c;p=libucw.git diff --git a/lib/wildmatch.h b/lib/wildmatch.h index 90a64ce8..a429da13 100644 --- a/lib/wildmatch.h +++ b/lib/wildmatch.h @@ -1,5 +1,5 @@ /* - * Fast Wildcard Pattern Matcher (only `?' and `*' supported) + * UCW Library -- Fast Wildcard Pattern Matcher (only `?' and `*' supported) * * (c) 1999 Martin Mares * @@ -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 *);