reformatting: cJSON_GetErrorPtr

This commit is contained in:
Max Bruckner 2016-09-27 23:38:05 +07:00
parent 94df772485
commit c42b774f9f
1 changed files with 4 additions and 1 deletions

View File

@ -34,7 +34,10 @@
static const char *global_ep;
const char *cJSON_GetErrorPtr(void) {return global_ep;}
const char *cJSON_GetErrorPtr(void)
{
return global_ep;
}
static int cJSON_strcasecmp(const char *s1,const char *s2)
{