Update doxygen headers in config parser

This commit is contained in:
Mario Hüttel 2022-12-31 19:43:37 +01:00
parent 6570d217c7
commit aade3288eb
1 changed files with 7 additions and 0 deletions

View File

@ -28,7 +28,14 @@
#include <stdio.h>
#include <stdlib.h>
/**
* @brief Config parser magic value used to check sanity of passed structs
*/
#define CONFIG_PARSER_MAGIC 0x464a6e2bUL
/**
* @brief Config parser type casting macro
*/
#define CONFIG_PARSER(p) ((struct config_parser *)(p))
/**