rename json functions

This commit is contained in:
rr- 2021-02-22 21:26:01 +01:00
parent 34422e7fef
commit fad70e2322
3 changed files with 26 additions and 30 deletions

View file

@ -3,10 +3,10 @@
#include "json-parser/json.h"
json_value* tr1m_json_get_field(
json_value* JSONGetField(
json_value* root, json_type field_type, const char* name, int* pIndex);
int tr1m_json_get_boolean_value(json_value* root, const char* name);
const char* tr1m_json_get_string_value(json_value* root, const char* name);
int JSONGetBooleanValue(json_value* root, const char* name);
const char* JSONGetStringValue(json_value* root, const char* name);
#endif