diff options
author | David Timber <dxdt@dev.snart.me> | 2022-10-18 14:50:48 +0800 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2022-10-18 14:50:48 +0800 |
commit | 8b47484919d61d389dfdefb07fe1b168021696e7 (patch) | |
tree | 7feb68d11dd73e3b98a43628572d9b70442dd085 /templates/doxygen | |
parent | 44d5b5b1bada4ef81a8b82612e8e248729c71e5d (diff) |
Add yaml.h, hostinfod bug fix, compilation setting
- Add yaml helper functions
- Add yaml test tool proone-yamlls
- Add yaml test doc
- Refactor hostinfod with yaml.h
- Fix bug in hostinfod where specifying verbosity results in config
error
- Add C flag '-Werror=implicit-function-declaration'
- Update doxygen template
Diffstat (limited to 'templates/doxygen')
-rw-r--r-- | templates/doxygen | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/templates/doxygen b/templates/doxygen index 0e5293b..f177de7 100644 --- a/templates/doxygen +++ b/templates/doxygen @@ -21,11 +21,17 @@ /** - * \brief The equality operator of the + * \brief The equality operator * \retval true if the contents of both \p a and \p b are identical * \retval false otherwise */ /** + * \brief The comparison operator + * \returns negative value if \p a is less than \p b + * \returns positive value if \p a is greater than \p b + * \retval 0 if \p a and \p b are identical + */ +/** * \brief The deep copy operator of the * \retval true if the contents of \p src have been successfully copied into * \p dst @@ -39,6 +45,22 @@ * \return false on failure and \c errno set to \c ENOMEM * \see [/doc/impl.md#Resource Allocation](/doc/impl.md#resource_allocation) */ +/** + * \brief Deep copy operator + * + * \param src The source object + * \param dst The destination object. The original contents are be freed + * \return true on successful operation + * \return false on failure and \c errno set to \c ENOMEM + */ +/** + * \brief Swap operator + */ +/** + * \brief Move opeator. Moves the contents of \p a into \p b The original + * contents of \p b are freed + */ + /** * \brief The serialisation function for the |