mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
13 lines
262 B
C
13 lines
262 B
C
#ifndef lua_code_cache_h
|
|
#define lua_code_cache_h
|
|
|
|
#include <lua.h>
|
|
#include <stddef.h>
|
|
|
|
const char * luacode_load(const char * key, const char * code, size_t *sz);
|
|
|
|
int luacode_loadfile(lua_State *L, const char *filename);
|
|
int luacode_lib(lua_State *);
|
|
|
|
#endif
|