| 10819 | |
| 10820 | |
| 10821 | LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size, |
| 10822 | const char *name) { |
| 10823 | LoadS ls; |
| 10824 | ls.s = buff; |
| 10825 | ls.size = size; |
| 10826 | return lua_load(L, getS, &ls, name); |
| 10827 | } |
| 10828 | |
| 10829 | |
| 10830 | LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) { |
no test coverage detected