- 博客(6)
- 收藏
- 关注
cJSON源代码,包含cJSON.c和cJSON.h 共2个文件 h:1个 c:1个
#define cJSON_False 0
#define cJSON_True 1
#define cJSON_NULL 2
#define cJSON_Number 3
#define cJSON_String 4
#define cJSON_Array 5
#define cJSON_Object 6
#define cJSON_IsReference 256
#define cJSON_StringIsConst 512
/* The cJSON structure: */
typedef struct cJSON {
struct cJSON *next,*prev; /* next/prev allow you to walk array/object chains. Alternatively, use GetArraySize/GetArrayItem/GetObjectItem */
struct cJSON *child; /* An array or object item will have a child pointer pointing to a
2023-05-05
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人