xref: /aosp_15_r20/external/capstone/arch/EVM/EVMInstPrinter.h (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh, 2018 */
3 
4 #ifndef CS_EVMINSTPRINTER_H
5 #define CS_EVMINSTPRINTER_H
6 
7 
8 #include "capstone/capstone.h"
9 #include "../../MCInst.h"
10 #include "../../SStream.h"
11 #include "../../cs_priv.h"
12 
13 struct SStream;
14 
15 void EVM_printInst(MCInst *MI, struct SStream *O, void *Info);
16 
17 #endif
18