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