| 400 | |
| 401 | |
| 402 | LUA_API lua_State *lua_tothread (lua_State *L, int idx) { |
| 403 | StkId o = index2adr(L, idx); |
| 404 | return (!ttisthread(o)) ? NULL : thvalue(o); |
| 405 | } |
| 406 | |
| 407 | |
| 408 | LUA_API const void *lua_topointer (lua_State *L, int idx) { |
no test coverage detected