File toml_parser.h
File List > source > toml_parser > src > toml_parser.h
Go to the documentation of this file
#ifndef TOML_PARSER_H
#define TOML_PARSER_H
/*************************************************************************************************/
/*************************** Includes ************************************************************/
/*************************************************************************************************/
#include <stdint.h>
#include <production_store.h>
/*************************************************************************************************/
/*************************** Defines *************************************************************/
/*************************************************************************************************/
/*************************************************************************************************/
/*************************** Public Function Declarations ****************************************/
/*************************************************************************************************/
#ifdef __cplusplus
extern "C"
{
#endif
prodstr_store_t *const tomlprsr_parse(const char *toml_data);
void tomlprsr_free(prodstr_store_t *store);
#ifdef __cplusplus
}
#endif
#endif /* end TOML_PARSER_H*/