Listing C/C++ functions (Code analysis in Unix)

后端 未结 5 1499
栀梦
栀梦 2021-01-04 09:42

Whether we\'re maintaining unfamiliar code or checking out the implementation details of an Apache module it can help if we can quickly traverse the code and build up an ove

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-04 10:15

    Doxygen is able to generate some reasonable html documentation and parse out comments. It's not perfect, but it might help. You could incorporate Ctags into your editor to jump you to the functions that you're looking for.

    Personally, I use grep ;)

提交回复
热议问题