Baseer 0.2.0
Baseer is an advanced binary analysis tool designed to provide deep insights into any file.
Loading...
Searching...
No Matches
bx_elf_disasm.h
1#ifndef BX_ELF_DISASM
2#define BX_ELF_DISASM
4#include "../../baseer.h"
5#include <elf.h>
6#include <string.h>
7#include "udis86.h"
8#include "../bx_elf_utils/bx_elf_utils.h"
9
10bool print_elf_disasm(bparser* parser, void* args);
11
12#endif
Core file handling and execution API for Baseer.
Binary parser abstraction supporting memory and streaming files.
bool print_elf_disasm(bparser *parser, void *args)
Print ELF file disassembly and metadata.
Definition bx_elf_disasm.c:325
Parser object.
Definition bparser.h:19