| 421 | |
| 422 | |
| 423 | LUA_API lua_State *lua_tothread (lua_State *L, int idx) { |
| 424 | StkId o = index2addr(L, idx); |
| 425 | return (!ttisthread(o)) ? NULL : thvalue(o); |
| 426 | } |
| 427 | |
| 428 | |
| 429 | LUA_API const void *lua_topointer (lua_State *L, int idx) { |
no test coverage detected