| 73 | void dfhack_printerr(lua_State *S, const std::string &str); |
| 74 | |
| 75 | inline bool is_null_userdata(lua_State *L, int idx) |
| 76 | { |
| 77 | return lua_islightuserdata(L, idx) && !lua_touserdata(L, idx); |
| 78 | } |
| 79 | |
| 80 | inline void AssertCoreSuspend(lua_State *state) |
| 81 | { |
no test coverage detected