mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
reformatting: cJSON_Parse
This commit is contained in:
parent
e809022349
commit
f36d9c9ef2
5
cJSON.c
5
cJSON.c
@ -825,7 +825,10 @@ cJSON *cJSON_ParseWithOpts(const char *value, const char **return_parse_end, int
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Default options for cJSON_Parse */
|
/* Default options for cJSON_Parse */
|
||||||
cJSON *cJSON_Parse(const char *value) {return cJSON_ParseWithOpts(value,0,0);}
|
cJSON *cJSON_Parse(const char *value)
|
||||||
|
{
|
||||||
|
return cJSON_ParseWithOpts(value, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
/* Render a cJSON item/entity/structure to text. */
|
/* Render a cJSON item/entity/structure to text. */
|
||||||
char *cJSON_Print(cJSON *item) {return print_value(item,0,1,0);}
|
char *cJSON_Print(cJSON *item) {return print_value(item,0,1,0);}
|
||||||
|
Loading…
Reference in New Issue
Block a user