| 655 | |
| 656 | |
| 657 | LUALIB_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 | |
| 666 | LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) { |
no test coverage detected