| 440 | |
| 441 | |
| 442 | LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { |
| 443 | const TValue *o = index2value(L, idx); |
| 444 | if (ttislcf(o)) return fvalue(o); |
| 445 | else if (ttisCclosure(o)) |
| 446 | return clCvalue(o)->f; |
| 447 | else return NULL; /* not a C function */ |
| 448 | } |
| 449 | |
| 450 | |
| 451 | l_sinline void *touserdata (const TValue *o) { |
nothing calls this directly
no test coverage detected