mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
reformatting: cJSON_InitHooks
This commit is contained in:
parent
18081c03c4
commit
8db7e6d320
8
cJSON.c
8
cJSON.c
@ -81,14 +81,16 @@ static char* cJSON_strdup(const char* str)
|
|||||||
|
|
||||||
void cJSON_InitHooks(cJSON_Hooks* hooks)
|
void cJSON_InitHooks(cJSON_Hooks* hooks)
|
||||||
{
|
{
|
||||||
if (!hooks) { /* Reset hooks */
|
if (!hooks)
|
||||||
|
{
|
||||||
|
/* Reset hooks */
|
||||||
cJSON_malloc = malloc;
|
cJSON_malloc = malloc;
|
||||||
cJSON_free = free;
|
cJSON_free = free;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
cJSON_malloc = (hooks->malloc_fn)?hooks->malloc_fn:malloc;
|
cJSON_malloc = (hooks->malloc_fn) ? hooks->malloc_fn : malloc;
|
||||||
cJSON_free = (hooks->free_fn)?hooks->free_fn:free;
|
cJSON_free = (hooks->free_fn) ? hooks->free_fn : free;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Internal constructor. */
|
/* Internal constructor. */
|
||||||
|
Loading…
Reference in New Issue
Block a user