Merge tag 'spi-fix-v6.9-merge-window' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / tools / perf / util / print_insn.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef PERF_PRINT_INSN_H
3 #define PERF_PRINT_INSN_H
4
5 #include <stddef.h>
6 #include <stdio.h>
7
8 struct perf_sample;
9 struct thread;
10 struct machine;
11
12 size_t sample__fprintf_insn_asm(struct perf_sample *sample, struct thread *thread,
13                                 struct machine *machine, FILE *fp);
14 size_t sample__fprintf_insn_raw(struct perf_sample *sample, FILE *fp);
15
16 #endif /* PERF_PRINT_INSN_H */