TRX/src/json_utils.h

16 lines
284 B
C
Raw Normal View History

2021-02-08 11:30:21 +01:00
#ifndef TR1M_JSON_UTILS_H
#define TR1M_JSON_UTILS_H
#include "json-parser/json.h"
2021-02-08 11:50:39 +01:00
json_value *tr1m_json_get_field(
json_value *root,
json_type field_type,
const char *name,
int *pIndex
);
int tr1m_json_get_boolean_value(json_value *root, const char *name);
2021-02-08 11:30:21 +01:00
#endif