MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / luaL_loadbuffer

Function luaL_loadbuffer

lua/lauxlib.c:657–663  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

655
656
657LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size,
658 const char *name) {
659 LoadS ls;
660 ls.s = buff;
661 ls.size = size;
662 return lua_load(L, getS, &ls, name);
663}
664
665
666LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) {

Callers 7

dostringFunction · 0.85
loadlineFunction · 0.85
luaB_loadstringFunction · 0.85
int (luaL_loadstring)Function · 0.85
db_debugFunction · 0.85
db_db_debugFunction · 0.85
db_debugFunction · 0.85

Calls 1

lua_loadFunction · 0.85

Tested by

no test coverage detected