是否有任何種類的工具只顯示給定源文件的函數原型? 我知道Doxygen的是做這樣的事情,但我覺得是一個簡單的Linux命令,如函數原型過濾器
$ filter-function-prototypes main.c
1: print_hello()
2: main()
其中作爲
#include <stdio.h>
void print_hello() {
printf("hello, world\n");
}
int main()
{
print_hello();
}
也許可以用'grep'或類似的工具來完成。 – 2013-04-05 10:55:22
查看相關問題http://stackoverflow.com/questions/1570917/extracting-cc-function-prototypes – user1929959 2013-04-05 10:56:23
很容易爲這個 – 2013-04-05 11:01:53