-
Notifications
You must be signed in to change notification settings - Fork 6
/
nxjson.h
65 lines (65 loc) · 2.54 KB
/
nxjson.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
///*
//* Copyright (c) 2013 Yaroslav Stavnichiy <[email protected]>
//*
//* This file is part of NXJSON.
//*
//* NXJSON is free software: you can redistribute it and/or modify
//* it under the terms of the GNU Lesser General Public License
//* as published by the Free Software Foundation, either version 3
//* of the License, or (at your option) any later version.
//*
//* NXJSON is distributed in the hope that it will be useful,
//* but WITHOUT ANY WARRANTY; without even the implied warranty of
//* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//* GNU Lesser General Public License for more details.
//*
//* You should have received a copy of the GNU Lesser General Public
//* License along with NXJSON. If not, see <http://www.gnu.org/licenses/>.
//*/
//
//#ifndef NXJSON_H
//#define NXJSON_H
//
//#ifdef __cplusplus
//extern "C" {
//#endif
//
//
// typedef enum nx_json_type {
// NX_JSON_NULL, // this is null value
// NX_JSON_OBJECT, // this is an object; properties can be found in child nodes
// NX_JSON_ARRAY, // this is an array; items can be found in child nodes
// NX_JSON_STRING, // this is a string; value can be found in text_value field
// NX_JSON_INTEGER, // this is an integer; value can be found in int_value field
// NX_JSON_DOUBLE, // this is a double; value can be found in dbl_value field
// NX_JSON_BOOL // this is a boolean; value can be found in int_value field
// } nx_json_type;
//
// typedef struct nx_json {
// nx_json_type type; // type of json node, see above
// const char* key; // key of the property; for object's children only
// const char* text_value; // text value of STRING node
// long long int_value; // the value of INTEGER or BOOL node
// double dbl_value; // the value of DOUBLE node
// int length; // number of children of OBJECT or ARRAY
// struct nx_json* child; // points to first child
// struct nx_json* next; // points to next child
// struct nx_json* last_child;
// } nx_json;
//
// typedef int(*nx_json_unicode_encoder)(unsigned int codepoint, char* p, char** endp);
//
// extern nx_json_unicode_encoder nx_json_unicode_to_utf8;
//
// const nx_json* nx_json_parse(char* text, nx_json_unicode_encoder encoder);
// const nx_json* nx_json_parse_utf8(char* text);
// void nx_json_free(const nx_json* js);
// const nx_json* nx_json_get(const nx_json* json, const char* key); // get object's property by key
// const nx_json* nx_json_item(const nx_json* json, int idx); // get array element by index
//
//
//#ifdef __cplusplus
//}
//#endif
//
//#endif /* NXJSON_H */