| 2387 | } |
| 2388 | |
| 2389 | LUALIB_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 | |
| 2398 | LUALIB_API int luaL_loadstring(lua_State *L, const char *s) { |
nothing calls this directly
no test coverage detected