MCPcopy Create free account
hub / github.com/PlutoLang/Pluto / luaL_loadbufferx

Function luaL_loadbufferx

src/lauxlib.cpp:1005–1011  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1003
1004
1005LUALIB_API int luaL_loadbufferx (lua_State *L, const char *buff, size_t size,
1006 const char *name, const char *mode) {
1007 LoadS ls;
1008 ls.s = buff;
1009 ls.size = size;
1010 return lua_load(L, getS, &ls, name, mode);
1011}
1012
1013
1014LUALIB_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