X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fbitsig.h;h=556b3c915c4ee8a05a9257b7a6a0aba32c7e6320;hb=f322b23840099a2e3cecc2835d319d260b078e3e;hp=d9e78e27fe5461fff8d9406085c1d58b1eeabdd3;hpb=a4fe009d3366b0a3e119713b0ecc7fc0070efdfa;p=libucw.git diff --git a/ucw/bitsig.h b/ucw/bitsig.h index d9e78e27..556b3c91 100644 --- a/ucw/bitsig.h +++ b/ucw/bitsig.h @@ -10,9 +10,16 @@ #ifndef _UCW_BITSIG_H #define _UCW_BITSIG_H +#ifdef CONFIG_UCW_CLEAN_ABI +#define bitsig_free ucw_bitsig_free +#define bitsig_init ucw_bitsig_init +#define bitsig_insert ucw_bitsig_insert +#define bitsig_member ucw_bitsig_member +#endif + struct bitsig; -struct bitsig *bitsig_init(uns perrlog, uns maxn); +struct bitsig *bitsig_init(uint perrlog, uint maxn); void bitsig_free(struct bitsig *b); int bitsig_member(struct bitsig *b, byte *item); int bitsig_insert(struct bitsig *b, byte *item);