MCPcopy Create free account
hub / github.com/Tencent/sluaunreal / luaL_loadbufferx

Function luaL_loadbufferx

Plugins/slua_unreal/External/lua/lauxlib.cpp:743–749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

741
742
743LUALIB_API int luaL_loadbufferx (lua_State *L, const char *buff, size_t size,
744 const char *name, const char *mode) {
745 LoadS ls;
746 ls.s = buff;
747 ls.size = size;
748 return lua_load(L, getS, &ls, name, mode);
749}
750
751
752LUALIB_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