radare2/libr/include/sdb/config.h
pancake 3b65f42167 Update sdb to 0.5, sdb is now public api
Update pkgconfig files
sdb now supports json and cas operations
sync pair.c to use the new cas api
2012-09-04 01:46:12 +02:00

15 lines
208 B
C

#ifndef _INCLUDE_CONFIG_H
#define _INCLUDE_CONFIG_H
#define SDB_KEYSIZE 32
#if SDB_KEYSIZE == 32
#define SDB_KT ut32
#elif SDB_KEYSIZE == 64
#define SDB_KT ut64
#else
#error Invalid key size
#endif
#endif