For my docs I precede each definition with a comment which codedoc correctly displays. However, I never document parameters or return values separately, so I'd like to be able to drop these sections. Or at the least for them to be dropped if they are empty?
In essence all I want is: type name or function signature followed by the comments that precede them.
So, instead of, say,
commas
Populates s with n's digits plus grouping commas. s should be of size COMMA_I64_SIZE.
void commas(char *s, int64_t n);
Parameters
s
n
I just want:
void commas(char *s, int64_t n);
Populates s with n's digits plus grouping commas. s should be of size COMMA_I64_SIZE.
For my docs I precede each definition with a comment which codedoc correctly displays. However, I never document parameters or return values separately, so I'd like to be able to drop these sections. Or at the least for them to be dropped if they are empty?
In essence all I want is: type name or function signature followed by the comments that precede them.
So, instead of, say,
I just want: