doxdocgen icon indicating copy to clipboard operation
doxdocgen copied to clipboard

Smart Text support in C language

Open andy27182 opened this issue 3 months ago • 0 comments

Is your feature request related to a problem? Please describe. Smart Text support in C language.

Describe the solution you'd like The current plug-in supports C++ Smart Text, but for C language projects, only empty briefs can be generated when using object-oriented design methods. The hope is:

/**
* @brief Create a Foo object
*
*/
typedef struct FooTag {

} Foo;

/**
* @brief Construct a new Foo object
*
* @parm me
*
*/
void Foo_ctor(Foo * const me) {}

Describe alternatives you've considered Maybe can add the match of the struct and the _ctor suffix, or support regular expressions

Additional context Add any other context or screenshots about the feature request here.

andy27182 avatar Sep 09 '25 07:09 andy27182