I use Raspberry Pi 3 and program GPIOs using C and Sysfs/WiringPi.
If someone provides a static library (.a file) to work with my Raspberry Pi C project, is there a way to list what functions, with what parameters needed, are available inside this static library?
For instance, if I get "test.a"
without any documentation/explanation of it,
I want to find out that this static library has
void foo(int param1);
char bar(void);