12 lines
203 B
C
12 lines
203 B
C
|
#ifndef _CJSON_MEM_H_
|
||
|
#define _CJSON_MEM_H_
|
||
|
|
||
|
#include "../lua/lua.h"
|
||
|
|
||
|
void cjson_mem_setlua (lua_State *L);
|
||
|
|
||
|
void *cjson_mem_malloc (uint32_t sz);
|
||
|
void *cjson_mem_realloc (void *p, uint32_t sz);
|
||
|
|
||
|
#endif
|