11 lines
239 B
C
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
|