xref: /aosp_15_r20/external/capstone/arch/EVM/EVMDisassembler.h (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh, 2018 */
3 
4 #ifndef CS_EVMDISASSEMBLER_H
5 #define CS_EVMDISASSEMBLER_H
6 
7 #include "../../MCInst.h"
8 
9 bool EVM_getInstruction(csh ud, const uint8_t *code, size_t code_len,
10 		MCInst *instr, uint16_t *size, uint64_t address, void *info);
11 
12 #endif
13