瀏覽代碼

reformatting: cJSON_PrintUnformatted

Max Bruckner 8 年之前
父節點
當前提交
ec46581b68
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      cJSON.c

+ 4 - 1
cJSON.c

@@ -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)
 {