| 407 | |
| 408 | |
| 409 | LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { |
| 410 | const TValue *o = index2value(L, idx); |
| 411 | if (ttislcf(o)) return fvalue(o); |
| 412 | else if (ttisCclosure(o)) |
| 413 | return clCvalue(o)->f; |
| 414 | else return NULL; /* not a C function */ |
| 415 | } |
| 416 | |
| 417 | |
| 418 | static void *touserdata (const TValue *o) { |
no test coverage detected