Is there a some argument to tell gcc
just to return all functions given in a c/h-file.
so e.g. gcc xyz.c -functionnames
should give:
uint8_t abc(uint8_t number)
uint8_t efg(uint8_t number)
- ...
Is there a some argument to tell gcc
just to return all functions given in a c/h-file.
so e.g. gcc xyz.c -functionnames
should give:
uint8_t abc(uint8_t number)
uint8_t efg(uint8_t number)