hi,
I have a static C library (say mylib.a
) and I was wondering if it's possible to find out what functions are implemented inside that file. I don't have a corresponding header file. what I need is like the equivalent of javap
for Java.
hi,
I have a static C library (say mylib.a
) and I was wondering if it's possible to find out what functions are implemented inside that file. I don't have a corresponding header file. what I need is like the equivalent of javap
for Java.
On Windows you can use dumpbin
. On Linux and friends you can use nm
.