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