2 Feb 2005 20:32
Man pages for library functions
Asmund Ostvold <asmundo <at> tihlde.org>
2005-02-02 19:32:57 GMT
2005-02-02 19:32:57 GMT
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
(Continue reading)
RSS Feed