Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/testing/selftests/bpf/disasm_helpers.h
26285 views
1
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2
3
#ifndef __DISASM_HELPERS_H
4
#define __DISASM_HELPERS_H
5
6
#include <stdlib.h>
7
8
struct bpf_insn;
9
10
struct bpf_insn *disasm_insn(struct bpf_insn *insn, char *buf, size_t buf_sz);
11
12
#endif /* __DISASM_HELPERS_H */
13
14