views:

126

answers:

3

Greetings Is there any free software that can take C source files and generating documentation using them?

Thanks

+6  A: 

Doxygen can generate documentation files from the comments in the source. Its free and quite popular.

monksy
+8  A: 

Have a look at Doxygen.

therefromhere
+3  A: 

use doxygen its a great tool to browse code and see classes and members relations with each other. the tool produces clickable html output for your source code with references for each usage. you can compile it to a searchable chm file or use a web server to search the code for keywords.

Alon