MikeLemo
MikeLemo

Reputation: 651

VSCode extension to auto generate C docstring?

I'm starting to get into more advanced codding practices and came across the need to create full documentations for my libraries which I write in C in the VSCode IDE and in an effort to try and same time I'm looking for a way to auto generate C Sphinx style docstring in VSCode now there is a lot of support to do that for python as it seems but can't find anything for autogen C sphinx docsting

Any suggestions?

Upvotes: 5

Views: 5046

Answers (1)

anastaciu
anastaciu

Reputation: 23832

You can use Doxygen extension, I quite like it, it's very good and easy to use:

https://marketplace.visualstudio.com/items?itemName=cschlosser.doxdocgen

Upvotes: 3

Related Questions