I need to remove a bunch of function prototypes from several .h files, and I was wondering if there is some kind of bash script / program to search for prototypes that are not in the .c file and automatically delete them.
This is really useful for cleaning source code when you have a large project and you did not track all changes.
Note that this has nothing to do with binary; I want to remove them from the code.
source
share