MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / luaL_loadbufferx_with_check

Function luaL_loadbufferx_with_check

src/Chain/libraries/glua/lauxlib.cpp:2389–2395  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2387}
2388
2389LUALIB_API int luaL_loadbufferx_with_check(lua_State *L, const char *buff, size_t size,
2390 const char *name, const char *mode, const int check_type) {
2391 LoadS ls;
2392 ls.s = buff;
2393 ls.size = size;
2394 return lua_load_with_check(L, getS, &ls, name, mode, check_type);
2395}
2396
2397
2398LUALIB_API int luaL_loadstring(lua_State *L, const char *s) {

Callers

nothing calls this directly

Calls 1

lua_load_with_checkFunction · 0.85

Tested by

no test coverage detected