Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
json.qh
Go to the documentation of this file.
1#pragma once
2
6 bool _json_parse_pair();
9 bool _json_parse_true();
10 bool _json_parse_false();
11 bool _json_parse_null();
12bool _json_parse_string(bool add);
14 bool _json_parse_float();
15 bool _json_parse_int();
bool _json_parse_pair()
Definition json.qc:51
bool _json_parse_object()
Parse a json object.
Definition json.qc:21
bool _json_parse_number()
Definition json.qc:207
bool _json_parse_true()
Definition json.qc:126
bool _json_parse_value()
Definition json.qc:111
bool _json_parse_float()
Definition json.qc:216
bool _json_parse_array()
Definition json.qc:71
bool _json_parse_false()
Definition json.qc:139
bool _json_parse_int()
Definition json.qc:242
bool _json_parse_string(bool add)
Definition json.qc:166
bool _json_parse_members()
Definition json.qc:33
bool _json_parse_null()
Definition json.qc:153