Explorar el Código

reformatting: printbuffer

Max Bruckner hace 8 años
padre
commit
b53ce73709
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  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)
 {