Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions snippets/c-lang-common/function_doxygen_doc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- mode: snippet -*-
# contributor: Dan Pitic <dpitic@gmail.com>
# name: Function Doxygen Doc
# key: doxy
# group: doxygen
# --
/**
* @brief ${1:function description}
*
* @details ${2:detailed description}
*
* @param ${3:param}
*
* @return ${4:return type}
*/
15 changes: 15 additions & 0 deletions snippets/nasm-mode/function_doc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- mode: snippet -*-
#name : Assembly Function Doc
#key : doxy
#group : doxygen
#contributor : Dan Pitic <dpitic@gmail.com>
# --
;;
;; @brief ${1:function description}
;;
;; @details ${2:detailed description}
;;
;; @param ${3:param}
;;
;; @return ${4:return}
;;