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