Go to the documentation of this file. 43 #define JSON_TYPE_ARRAY '[' 44 #define JSON_TYPE_OBJECT '{' 45 #define JSON_TYPE_PAIR ':' 46 #define JSON_TYPE_PAIR_NAME 'N' 47 #define JSON_TYPE_STRING '"' 48 #define JSON_TYPE_INT 'I' 49 #define JSON_TYPE_NUMBER '0' 50 #define JSON_TYPE_ERROR 0 53 #define JSON_TYPE_NULL 'n' 54 #define JSON_TYPE_TRUE 't' 55 #define JSON_TYPE_FALSE 'f' 57 #define JSON_TYPE_CALLBACK 'C' 68 #define JSON_CONTENT_TYPE "application/json"