mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
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
|