Merge commit '70e2f11a0c79969e66b51085571bbe9f4dfb7ded' into nanostack-as_subtree

* commit '70e2f11a0c79969e66b51085571bbe9f4dfb7ded':
  Squashed 'connectivity/libraries/nanostack-libservice/' changes from c6cae6992a..67d7b93ec6
pull/13473/head
Arto Kinnunen 2020-08-20 17:06:12 +03:00
commit 9aac23d49e
1 changed files with 11 additions and 1 deletions

View File

@ -23,8 +23,18 @@
extern "C" { extern "C" {
#endif #endif
/** \defgroup ns_list Linked list support library.
*
* The ns_list.h file provides a doubly-linked list/queue, providing O(1)
* performance for all insertion/removal operations, and access to either
* end of the list.
*
* See \ref ns_list.h for documentation.
*/
/** \file /** \file
* \brief Linked list support library * \ingroup ns_list
* \brief Linked list support library.
* *
* The ns_list.h file provides a doubly-linked list/queue, providing O(1) * The ns_list.h file provides a doubly-linked list/queue, providing O(1)
* performance for all insertion/removal operations, and access to either * performance for all insertion/removal operations, and access to either