Add most commonly used Doxygen comment snippets

This commit is contained in:
2025-08-14 12:21:53 +01:00
parent 4fc07f90d4
commit 595c45724d
2 changed files with 20 additions and 0 deletions

View File

@@ -4,3 +4,13 @@ snippet main
int main(${1:int argc, const char **argv}) {
$0
}
# Doxygen
snippet b
@brief ${0:desc}
snippet r
@return ${0:desc}
snippet rv
@retval ${1:val} ${0:desc}