| 607 | |
| 608 | |
| 609 | LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size, |
| 610 | const char *name) { |
| 611 | LoadS ls; |
| 612 | ls.s = buff; |
| 613 | ls.size = size; |
| 614 | return lua_load(L, getS, &ls, name); |
| 615 | } |
| 616 | |
| 617 | |
| 618 | LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) { |
no test coverage detected