| 500 | |
| 501 | |
| 502 | LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { |
| 503 | const TValue *o = index2value(L, idx); |
| 504 | if (ttislcf(o)) return fvalue(o); |
| 505 | else if (ttisCclosure(o)) |
| 506 | return clCvalue(o)->f; |
| 507 | else return NULL; /* not a C function */ |
| 508 | } |
| 509 | |
| 510 | |
| 511 | l_sinline void *touserdata (const TValue *o) { |
nothing calls this directly
no test coverage detected