| 299 | |
| 300 | |
| 301 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |
| 302 | const TValue *o = index2value(L, idx); |
| 303 | return (ttislcf(o) || (ttisCclosure(o))); |
| 304 | } |
| 305 | |
| 306 | |
| 307 | LUA_API int lua_isinteger (lua_State *L, int idx) { |
no test coverage detected