I was planning to write a Perl script that wud extract some fn prototypes frm my org's src code base (significantly huge). The code is mostly in C and some in C++. While some fns have prototypes, others r simply declared and defined in same spot. Some code even use old school C style fn declarations (ie not writing fn params within round brackets).
I have a sneaky feeling that there r utils or tools out there that accomplish this task (besides the Perl script would be hairy/scary given the inconsistencies in coding standards here). Any idea/suggestions? Thnx.