Kaynağa Gözat

reformatting: cJSON_PrintUnformatted

Max Bruckner 8 yıl önce
ebeveyn
işleme
ec46581b68
1 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  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)
 {