| 2242 | |
| 2243 | |
| 2244 | LUA_API lua_State *lua_tothread (lua_State *L, int idx) { |
| 2245 | StkId o = index2adr(L, idx); |
| 2246 | return (!ttisthread(o)) ? NULL : thvalue(o); |
| 2247 | } |
| 2248 | |
| 2249 | |
| 2250 | LUA_API const void *lua_topointer (lua_State *L, int idx) { |
no test coverage detected