MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / luaL_loadbufferx

Function luaL_loadbufferx

ThirdParty/lua/lua/lauxlib.c:693–699  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

691
692
693LUALIB_API int luaL_loadbufferx (lua_State *L, const char *buff, size_t size,
694 const char *name, const char *mode) {
695 LoadS ls;
696 ls.s = buff;
697 ls.size = size;
698 return lua_load(L, getS, &ls, name, mode);
699}
700
701
702LUALIB_API int luaL_loadstring (lua_State *L, const char *s) {

Callers 1

luaB_loadFunction · 0.85

Calls 1

lua_loadFunction · 0.85

Tested by

no test coverage detected