mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
reformatting: cJSON_PrintUnformatted
This commit is contained in:
parent
1748902d3c
commit
ec46581b68
5
cJSON.c
5
cJSON.c
@ -836,7 +836,10 @@ char *cJSON_Print(cJSON *item)
|
|||||||
return print_value(item, 0, 1, 0);
|
return print_value(item, 0, 1, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *cJSON_PrintUnformatted(cJSON *item) {return print_value(item,0,0,0);}
|
char *cJSON_PrintUnformatted(cJSON *item)
|
||||||
|
{
|
||||||
|
return print_value(item, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
char *cJSON_PrintBuffered(cJSON *item,int prebuffer,int fmt)
|
char *cJSON_PrintBuffered(cJSON *item,int prebuffer,int fmt)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user