reformatting: cJSON_PrintUnformatted

This commit is contained in:
Max Bruckner 2016-09-28 20:43:05 +07:00
parent 1748902d3c
commit ec46581b68
1 changed files with 4 additions and 1 deletions

View File

@ -836,7 +836,10 @@ char *cJSON_Print(cJSON *item)
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)
{