mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-06-22 18:34:29 +10:00
15 lines
233 B
C
15 lines
233 B
C
/*
|
|
elfsym.h
|
|
|
|
Read symbol addresses from a .elf file.
|
|
*/
|
|
|
|
#ifndef __ELFSYM__
|
|
#define __ELFSYM__
|
|
|
|
int elfsym_open(char file[]);
|
|
void elfsym_close(int fd);
|
|
unsigned int elfsym_get_symbol_address(int fd, char symbol_name[]);
|
|
|
|
#endif
|