| 84 | } |
| 85 | |
| 86 | LUA_API uint32_t xlua_objlen (lua_State *L, int idx) { |
| 87 | return lua_objlen (L, idx); |
| 88 | } |
| 89 | |
| 90 | LUA_API uint32_t xlua_touint (lua_State *L, int idx) { |
| 91 | return (uint32_t)lua_tonumber(L, idx); |
nothing calls this directly
no test coverage detected