| 435 | |
| 436 | |
| 437 | LUA_API lua_State *lua_tothread (lua_State *L, int idx) { |
| 438 | StkId o = index2addr(L, idx); |
| 439 | return (!ttisthread(o)) ? NULL : thvalue(o); |
| 440 | } |
| 441 | |
| 442 | |
| 443 | LUA_API const void *lua_topointer (lua_State *L, int idx) { |
no test coverage detected