From b53ce73709f8624ef48472749979e3ef81c4fb55 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Tue, 27 Sep 2016 23:45:52 +0700 Subject: [PATCH] reformatting: printbuffer --- cJSON.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cJSON.c b/cJSON.c index ed4707a..00e87d2 100644 --- a/cJSON.c +++ b/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) {