| 268 | |
| 269 | |
| 270 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |
| 271 | const TValue *o = index2value(L, idx); |
| 272 | return (ttislcf(o) || (ttisCclosure(o))); |
| 273 | } |
| 274 | |
| 275 | |
| 276 | LUA_API int lua_isinteger (lua_State *L, int idx) { |
no test coverage detected