aboutsummaryrefslogtreecommitdiffstats
path: root/capstone/arch/BPF/BPFInstPrinter.h
blob: 685a8d6565e4d6984d6a3b48d5adc648c7ffe89c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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