2 * UCW Library -- Bit Array Signatures -- A Dubious Detector of Duplicates
4 * (c) 2002 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
13 #ifdef CONFIG_UCW_CLEAN_ABI
14 #define bitsig_free ucw_bitsig_free
15 #define bitsig_init ucw_bitsig_init
16 #define bitsig_insert ucw_bitsig_insert
17 #define bitsig_member ucw_bitsig_member
22 struct bitsig *bitsig_init(uns perrlog, uns maxn);
23 void bitsig_free(struct bitsig *b);
24 int bitsig_member(struct bitsig *b, byte *item);
25 int bitsig_insert(struct bitsig *b, byte *item);