I’m using a 3rd party API C sources where special documentation blocks are as following
/****************************************************************************************
* @fn fn
*
* @brief brief
*
* @param param
*
* @return return
****************************************************************************************
*/
void fn(void)
{
...
}
Is there a way to convince Doxygen these are real special documentation blocks without modifying sources in order to match standard block (e.g. exactly two asterisks at block start)?
Thank you in advance.
I suggest to create an input filter that replaces
/******by/**and add that to theINPUT_FILTERoption in the configuration file. If you have the Unix command
sedon your system, the following would do the trick: