Sfoglia il codice sorgente

reformatting: printbuffer

Max Bruckner 8 anni fa
parent
commit
b53ce73709
1 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  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)
 {