mirror of
https://github.com/SimoneN64/Kaizen.git
synced 2025-04-02 10:41:53 -04:00
16 lines
325 B
C
16 lines
325 B
C
/* Capstone Disassembly Engine */
|
|
/* BPF Backend by david942j <david942j@gmail.com>, 2019 */
|
|
|
|
#ifndef CS_BPFINSTPRINTER_H
|
|
#define CS_BPFINSTPRINTER_H
|
|
|
|
#include <capstone/capstone.h>
|
|
|
|
#include "../../MCInst.h"
|
|
#include "../../SStream.h"
|
|
|
|
struct SStream;
|
|
|
|
void BPF_printInst(MCInst *MI, struct SStream *O, void *Info);
|
|
|
|
#endif
|