From d42febea505d8b12e700235287a511a8f9584348 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Wed, 28 Sep 2016 20:41:07 +0700 Subject: [PATCH] reformatting: Predeclared print prototypes --- cJSON.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cJSON.c b/cJSON.c index 1876acc..afcb3d4 100644 --- a/cJSON.c +++ b/cJSON.c @@ -766,12 +766,12 @@ static char *print_string(cJSON *item, printbuffer *p) } /* Predeclare these prototypes. */ -static const char *parse_value(cJSON *item,const char *value,const char **ep); -static char *print_value(cJSON *item,int depth,int fmt,printbuffer *p); -static const char *parse_array(cJSON *item,const char *value,const char **ep); -static char *print_array(cJSON *item,int depth,int fmt,printbuffer *p); -static const char *parse_object(cJSON *item,const char *value,const char **ep); -static char *print_object(cJSON *item,int depth,int fmt,printbuffer *p); +static const char *parse_value(cJSON *item, const char *value, const char **ep); +static char *print_value(cJSON *item, int depth, int fmt, printbuffer *p); +static const char *parse_array(cJSON *item, const char *value, const char **ep); +static char *print_array(cJSON *item, int depth, int fmt, printbuffer *p); +static const char *parse_object(cJSON *item, const char *value, const char **ep); +static char *print_object(cJSON *item, int depth, int fmt, printbuffer *p); /* Utility to jump whitespace and cr/lf */ static const char *skip(const char *in) {while (in && *in && (unsigned char)*in<=32) in++; return in;} -- GitLab