| 256 | |
| 257 | |
| 258 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |
| 259 | StkId o = index2addr(L, idx); |
| 260 | return (ttislcf(o) || (ttisCclosure(o))); |
| 261 | } |
| 262 | |
| 263 | |
| 264 | LUA_API int lua_isnumber (lua_State *L, int idx) { |
nothing calls this directly
no test coverage detected