Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party CJSON
提交
8c58e625
T
Third Party CJSON
项目概览
OpenHarmony
/
Third Party CJSON
大约 1 年 前同步成功
通知
6
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party CJSON
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
8c58e625
编写于
1月 05, 2017
作者:
M
Max Bruckner
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'loigu/master' into cJSON_Raw
上级
8893e397
06008b04
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
32 addition
and
1 deletion
+32
-1
cJSON.c
cJSON.c
+27
-0
cJSON.h
cJSON.h
+5
-1
未找到文件。
cJSON.c
浏览文件 @
8c58e625
...
...
@@ -989,6 +989,13 @@ static char *print_value(const cJSON *item, int depth, cjbool fmt, printbuffer *
case
cJSON_Number
:
out
=
print_number
(
item
,
p
);
break
;
case
cJSON_Raw
:
out
=
ensure
(
p
,
strlen
(
item
->
valuestring
));
if
(
out
)
{
strcpy
(
out
,
item
->
valuestring
);
}
break
;
case
cJSON_String
:
out
=
print_string
(
item
,
p
);
break
;
...
...
@@ -1016,6 +1023,9 @@ static char *print_value(const cJSON *item, int depth, cjbool fmt, printbuffer *
case
cJSON_Number
:
out
=
print_number
(
item
,
0
);
break
;
case
cJSON_Raw
:
out
=
cJSON_strdup
(
item
->
valuestring
);
break
;
case
cJSON_String
:
out
=
print_string
(
item
,
0
);
break
;
...
...
@@ -1988,6 +1998,23 @@ cJSON *cJSON_CreateString(const char *string)
return
item
;
}
extern
cJSON
*
cJSON_CreateRaw
(
const
char
*
raw
)
{
cJSON
*
item
=
cJSON_New_Item
();
if
(
item
)
{
item
->
type
=
cJSON_Raw
;
item
->
valuestring
=
cJSON_strdup
(
raw
);
if
(
!
item
->
valuestring
)
{
cJSON_Delete
(
item
);
return
0
;
}
}
return
item
;
}
cJSON
*
cJSON_CreateArray
(
void
)
{
cJSON
*
item
=
cJSON_New_Item
();
...
...
cJSON.h
浏览文件 @
8c58e625
...
...
@@ -38,6 +38,7 @@ extern "C"
#define cJSON_String (1 << 4)
#define cJSON_Array (1 << 5)
#define cJSON_Object (1 << 6)
#define cJSON_Raw (1 << 7) //< raw json
#define cJSON_IsReference 256
#define cJSON_StringIsConst 512
...
...
@@ -54,7 +55,7 @@ typedef struct cJSON
/* The type of the item, as above. */
int
type
;
/* The item's string, if type==cJSON_String */
/* The item's string, if type==cJSON_String
and type == cJSON_Raw
*/
char
*
valuestring
;
/* The item's number, if type==cJSON_Number */
int
valueint
;
...
...
@@ -105,6 +106,8 @@ extern cJSON *cJSON_CreateFalse(void);
extern
cJSON
*
cJSON_CreateBool
(
int
b
);
extern
cJSON
*
cJSON_CreateNumber
(
double
num
);
extern
cJSON
*
cJSON_CreateString
(
const
char
*
string
);
// raw json
extern
cJSON
*
cJSON_CreateRaw
(
const
char
*
raw
);
extern
cJSON
*
cJSON_CreateArray
(
void
);
extern
cJSON
*
cJSON_CreateObject
(
void
);
...
...
@@ -155,6 +158,7 @@ extern void cJSON_Minify(char *json);
#define cJSON_AddBoolToObject(object,name,b) cJSON_AddItemToObject(object, name, cJSON_CreateBool(b))
#define cJSON_AddNumberToObject(object,name,n) cJSON_AddItemToObject(object, name, cJSON_CreateNumber(n))
#define cJSON_AddStringToObject(object,name,s) cJSON_AddItemToObject(object, name, cJSON_CreateString(s))
#define cJSON_AddRawToObject(object,name,s) cJSON_AddItemToObject(object, name, cJSON_CreateRaw(s))
/* When assigning an integer value, it needs to be propagated to valuedouble too. */
#define cJSON_SetIntValue(object,val) ((object) ? (object)->valueint = (object)->valuedouble = (val) : (val))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录