MCPcopy Create free account
hub / github.com/danomatika/ofxLua / luaL_loadbufferx

Function luaL_loadbufferx

libs/lua/lauxlib.c:834–840  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

832
833
834LUALIB_API int luaL_loadbufferx (lua_State *L, const char *buff, size_t size,
835 const char *name, const char *mode) {
836 LoadS ls;
837 ls.s = buff;
838 ls.size = size;
839 return lua_load(L, getS, &ls, name, mode);
840}
841
842
843LUALIB_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