update style

This commit is contained in:
rr- 2021-02-08 11:50:39 +01:00
parent 1eb83cd242
commit 685dde4d4b
No known key found for this signature in database
GPG key ID: CC65E6FD28CAE42A
6 changed files with 108 additions and 45 deletions

View file

@ -3,7 +3,13 @@
#include "json-parser/json.h"
json_value *get_json_field(json_value *root, json_type fieldType, const char *name, int *pIndex);
int get_json_boolean_field_value(json_value *root, const char *name);
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);
#endif