[Doxygen-develop] Man pages for library functions
Brought to you by:
dimitri
From: Asmund O. <as...@ti...> - 2005-02-02 19:33:02
|
I posted a message on the user list asking if it was possible to get separate man-page for each function(public) that a library offers. I did not get a answer. Does this functionality exist in Doxygen? Here is an example to show what I ma interested in doing. His is a c file that implements some public functions for the API: In file ffff.c; ------- /*! function foo do some thing * \param a Contains something * \param b Contains something else * \return something */ int foo( int a, int b){ } /*! function bar for something * \param a takes a size of something * \param b takes something * \return something */ int bar( int a, int b ){ //some code } ------ What I want is two man-page (files) foo.3 and bar.3 not making a single man-page. Maybe with the possibility to say what .h file it is defined in. How difficult do you think this would be to implement? If it is not too difficult I am more then willing to contribute this functionality to the Doxygen frame work. Is there any interest for this or is it only me that needs this? Best regards Aasmund |