MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / luaL_loadbuffer

Function luaL_loadbuffer

Source/Misc/lua/src/lua.c:10821–10827  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10819
10820
10821LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size,
10822const char *name) {
10823LoadS ls;
10824ls.s = buff;
10825ls.size = size;
10826return lua_load(L, getS, &ls, name);
10827}
10828
10829
10830LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) {

Callers 4

runCodeMethod · 0.85
int (luaL_loadstring)Function · 0.85
luaB_loadstringFunction · 0.85
db_debugFunction · 0.85

Calls 1

lua_loadFunction · 0.85

Tested by

no test coverage detected