From a48b8f27ff1083f1772f02dedfb18f73de17d3fa Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sun, 19 Nov 2017 17:57:59 -0500 Subject: [PATCH] doc: json: add to doxygen group Signed-off-by: Anas Nashif --- include/json.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/include/json.h b/include/json.h index fbd8181444e..ebff5835c87 100644 --- a/include/json.h +++ b/include/json.h @@ -7,6 +7,20 @@ #ifndef __JSON_H #define __JSON_H + + +/** + * @brief Structured Data + * @defgroup structured_data Structured Data + */ + + +/** + * @defgroup json JSON + * @ingroup structured_data + * @{ + */ + #include #include #include @@ -528,4 +542,7 @@ int json_obj_encode(const struct json_obj_descr *descr, size_t descr_len, const void *val, json_append_bytes_t append_bytes, void *data); +/** + * @} + */ #endif /* __JSON_H */