mirror of
https://github.com/CompeyDev/lei.git
synced 2024-12-12 12:50:42 +00:00
6 lines
193 B
C
6 lines
193 B
C
|
#include <stdlib.h>
|
||
|
#include <lua.h>
|
||
|
|
||
|
void* clua_alloc(void* ud, void *ptr, size_t osize, size_t nsize);
|
||
|
lua_State* clua_newstate(void* goallocf);
|
||
|
l_noret cluaL_errorL(lua_State* L, char* msg);
|