mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-22 22:06:50 +00:00
3b65f42167
Update pkgconfig files sdb now supports json and cas operations sync pair.c to use the new cas api
15 lines
208 B
C
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
|