reformatting: cJSON_InitHooks

This commit is contained in:
Max Bruckner 2016-09-27 23:39:54 +07:00
parent 18081c03c4
commit 8db7e6d320
1 changed files with 5 additions and 3 deletions

View File

@ -81,14 +81,16 @@ static char* cJSON_strdup(const char* str)
void cJSON_InitHooks(cJSON_Hooks* hooks)
{
if (!hooks) { /* Reset hooks */
if (!hooks)
{
/* Reset hooks */
cJSON_malloc = malloc;
cJSON_free = free;
return;
}
cJSON_malloc = (hooks->malloc_fn)?hooks->malloc_fn:malloc;
cJSON_free = (hooks->free_fn)?hooks->free_fn:free;
cJSON_malloc = (hooks->malloc_fn) ? hooks->malloc_fn : malloc;
cJSON_free = (hooks->free_fn) ? hooks->free_fn : free;
}
/* Internal constructor. */