jsontree: add uint type

This commit is contained in:
Jeff Kent 2015-12-28 09:45:23 -06:00
parent fcc87ddce8
commit bcc7d0a1eb
3 changed files with 24 additions and 6 deletions

View file

@ -45,6 +45,7 @@
#define JSON_TYPE_PAIR ':'
#define JSON_TYPE_PAIR_NAME 'N' /* for N:V pairs */
#define JSON_TYPE_STRING '"'
#define JSON_TYPE_UINT 'U'
#define JSON_TYPE_INT 'I'
#define JSON_TYPE_NUMBER '0'
#define JSON_TYPE_ERROR 0