Currently my C-code function declaration is documented as follows
/** Some fubar function
*@param[in] val1 the first input variable
*@param[in] val2 the second input variable
*/
void foo (int val1, int val2);
But say the parameters can only except numbers within a certain range, e.g., 0-500
Is it possible to document this other than as part of the parameter description? Maybe so that it shows up separately in the produced documentation?
E.g. in the latex-produced pdf a table would be produced with a cell for the parameter type (int) the direction (in) and the name (var1/var2). There is some way of having another table cell with 0-500?