소스 검색

reformatting: cJSON_Print

Max Bruckner 8 년 전
부모
커밋
1748902d3c
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      cJSON.c

+ 5 - 1
cJSON.c

@@ -831,7 +831,11 @@ cJSON *cJSON_Parse(const char *value)
 }
 
 /* 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);
+}
+
 char *cJSON_PrintUnformatted(cJSON *item)	{return print_value(item,0,0,0);}
 
 char *cJSON_PrintBuffered(cJSON *item,int prebuffer,int fmt)