]> mj.ucw.cz Git - libucw.git/blobdiff - lib/bitsig.h
lizzard -> lizard
[libucw.git] / lib / bitsig.h
index 88aba524414c66a9f2866ea3c29397024868924e..031dcd3d517812c2fc4c526de317d4bbebeb03e1 100644 (file)
@@ -2,10 +2,14 @@
  *     Bit Array Signatures -- A Dubious Detector of Duplicates
  *
  *     (c) 2002 Martin Mares <mj@ucw.cz>
+ *
+ *     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);