我在 C 中有一个结构,有几个成员和一个 ELF 文件。
例如我有以下
typedef struct my_struct {
int a;
int c;
char d;
} MYSTRUCT_T;
MYSTRUCT_T hello;
我怎样才能打印出 hello 的成员?或者获取一个 hello 对象,其中包含 hello.a、hello.c 和 hello.d 的成员
是否已经有一个库可以做到这一点,例如 pyelftools?
我在 C 中有一个结构,有几个成员和一个 ELF 文件。
例如我有以下
typedef struct my_struct {
int a;
int c;
char d;
} MYSTRUCT_T;
MYSTRUCT_T hello;
我怎样才能打印出 hello 的成员?或者获取一个 hello 对象,其中包含 hello.a、hello.c 和 hello.d 的成员
是否已经有一个库可以做到这一点,例如 pyelftools?