mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-17 23:29:21 +01:00
8 lines
106 B
C
8 lines
106 B
C
|
#ifndef _ELF_H
|
||
|
#define _ELF_H
|
||
|
|
||
|
int valid_elf_image (void *addr);
|
||
|
u32 load_elf_image (void *addr);
|
||
|
|
||
|
#endif
|