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