Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一些 C 源文件中,我看到了以下格式的注释:
/** * @bla bla bla * bla bla.. */
有人告诉我,如果我正确地注释了我的.c/.h文件,那么使用某个工具,我可以自动从这些文件中自动生成手册页。
.c
.h
有人知道这是否可能吗?(怎么做,我应该使用哪个软件等)
看起来你正在寻找doxygen
您看到的那些评论可能是doxygen标记。这可以生成 man、HTML 和各种其他格式。
试试 doxygen
http://www.doxygen.nl/index.html
您显示的语法是 doxygen。AFAIK,它可以生成手册页(以及 HTML 和 LaTeX)。