| 1163 | |
| 1164 | |
| 1165 | static lua_State *getstate (lua_State *L) { |
| 1166 | lua_State *L1 = cast(lua_State *, lua_touserdata(L, 1)); |
| 1167 | luaL_argcheck(L, L1 != NULL, 1, "state expected"); |
| 1168 | return L1; |
| 1169 | } |
| 1170 | |
| 1171 | |
| 1172 | static int loadlib (lua_State *L) { |
no test coverage detected