/* * Copyright (c) 2019 * * This library is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See COPYING for details. */ /** * @file * @brief Methods for retrieving the json-c Parse. */ //#include "config.h" #include "json_object.h" #ifndef _JsonParser_h_ #define _JsonParser_h_ /** * @see Print JSON_VALUE */ void print_json_value(json_object *jobj); /* Print JSON_VALUE */ /** * * @see JSON_PARSE_ARRAY */ void json_parse_array( json_object *jobj, char *key); /* JSON_PARSE_ARRAY */ /** * * @see Parsing the json object */ void json_parse(json_object * jobj); /* JSON_PARSE_OBJECT */ /** * * @see Receive Message routine */ void ReceivedMessage(void *in, size_t len); #endif