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