标签: python python-2.7 pyelftools
我在C中有一个结构,有几个成员和一个ELF文件。
例如我有以下
typedef struct my_struct { int a; int c; char d; } MYSTRUCT_T; MYSTRUCT_T hello;
我怎么能打印出你好的成员?或者使用hello.a,hello.c和hello.d
是否已经存在这样的库,例如pyelftools?