| 393 | |
| 394 | |
| 395 | LUA_API lua_State *lua_tothread (lua_State *L, int idx) { |
| 396 | StkId o = index2adr(L, idx); |
| 397 | return (!ttisthread(o)) ? NULL : thvalue(o); |
| 398 | } |
| 399 | |
| 400 | |
| 401 | LUA_API const void *lua_topointer (lua_State *L, int idx) { |
no test coverage detected