]> mj.ucw.cz Git - libucw.git/blobdiff - lib/bitsig.h
Merge with git+ssh://cvs.ucw.cz/projects/sherlock/GIT/sherlock.git
[libucw.git] / lib / bitsig.h
index 88aba524414c66a9f2866ea3c29397024868924e..60a5b1478474ef7f0ca32c340d8f5d2e540c9a04 100644 (file)
@@ -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 <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);