X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fbitsig.h;h=60a5b1478474ef7f0ca32c340d8f5d2e540c9a04;hb=859769b129993a67598d61bb36d72d268082276b;hp=88aba524414c66a9f2866ea3c29397024868924e;hpb=fa5fc267286efc42f0c610c4e54a117a9bc07232;p=libucw.git diff --git a/lib/bitsig.h b/lib/bitsig.h index 88aba524..60a5b147 100644 --- a/lib/bitsig.h +++ b/lib/bitsig.h @@ -1,11 +1,15 @@ /* - * Bit Array Signatures -- A Dubious Detector of Duplicates + * UCW Library -- Bit Array Signatures -- A Dubious Detector of Duplicates * * (c) 2002 Martin Mares + * + * This software may be freely distributed and used according to the terms + * of the GNU Lesser General Public License. */ struct bitsig; struct bitsig *bitsig_init(uns perrlog, uns maxn); +void bitsig_free(struct bitsig *b); int bitsig_member(struct bitsig *b, byte *item); int bitsig_insert(struct bitsig *b, byte *item);