Baseer 0.2.0
Baseer is an advanced binary analysis tool designed to provide deep insights into any file.
Loading...
Searching...
No Matches
bx_deElf.h
1#ifndef BX_DECOMPILER_ELF
2#define BX_DECOMPILER_ELF
4#include <stdbool.h>
5#ifdef __cplusplus
6extern "C" {
7#endif
8
13void print_decompiled_code(const char *c_code, int with_line_numbers);
20bool decompile_elf(bparser* parser, void *arg);
21
22
23#ifdef __cplusplus
24}
25#endif
26#endif // BX_DECOMPILER_ELF
Binary parser abstraction supporting memory and streaming files.
Parser object.
Definition bparser.h:19