소스 검색

reformatting: printbuffer

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

+ 6 - 1
cJSON.c

@@ -213,7 +213,12 @@ static int pow2gt (int x)
     return x + 1;
 }
 
-typedef struct {char *buffer; int length; int offset; } printbuffer;
+typedef struct
+{
+    char *buffer;
+    int length;
+    int offset;
+} printbuffer;
 
 static char* ensure(printbuffer *p,int needed)
 {