Files
townengine/src/system/linux/elf.h
2024-07-30 03:16:46 +03:00

11 lines
239 B
C

#ifndef ELF_H
#define ELF_H
#include <stdbool.h>
bool infer_elf_section_bounds(const char *restrict name,
const char **restrict vm_start,
const char **restrict vm_end);
#endif