]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bitsig.h
ABI: Symbol renames for libucw and libcharset
[libucw.git] / ucw / bitsig.h
index 60a5b1478474ef7f0ca32c340d8f5d2e540c9a04..07a72bc1a0b9f7792d74e35d7a7478f4e92cdf3b 100644 (file)
@@ -7,9 +7,21 @@
  *     of the GNU Lesser General Public License.
  */
 
+#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);
 void bitsig_free(struct bitsig *b);
 int bitsig_member(struct bitsig *b, byte *item);
 int bitsig_insert(struct bitsig *b, byte *item);
+
+#endif