| 632 | |
| 633 | |
| 634 | LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size, |
| 635 | const char *name) { |
| 636 | LoadS ls; |
| 637 | ls.s = buff; |
| 638 | ls.size = size; |
| 639 | return lua_load(L, getS, &ls, name); |
| 640 | } |
| 641 | |
| 642 | |
| 643 | LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) { |
no test coverage detected