mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 02:41:08 +00:00
2434c3ca74
* Add riscv for capstone5 in the meson * Report capstone version in the asm plugins * Many changes in the ppc analysis, seems like it's improved, (emulation quality and xrefs) * Update all tests and report issues in capstone4 to upstream * Fix-x86-16 test marked as broken as it needs better fix
17 lines
303 B
C
17 lines
303 B
C
#ifndef CS_VERSION_H
|
|
#define CS_VERSION_H
|
|
|
|
#include <capstone.h>
|
|
|
|
#if CS_API_MAJOR == 5
|
|
#define CAPSTONE_VERSION_STRING "v5"
|
|
#elif CS_API_MAJOR == 4
|
|
#define CAPSTONE_VERSION_STRING "v4"
|
|
#elif CS_API_MAJOR == 3
|
|
#define CAPSTONE_VERSION_STRING "v3"
|
|
#else
|
|
#define CAPSTONE_VERSION_STRING ""
|
|
#endif
|
|
|
|
#endif
|