| 292 | |
| 293 | |
| 294 | LUA_API const char *lua_typename (lua_State *L, int t) { |
| 295 | UNUSED(L); |
| 296 | api_check(L, LUA_TNONE <= t && t < LUA_NUMTYPES, "invalid type"); |
| 297 | return ttypename(t); |
| 298 | } |
| 299 | |
| 300 | |
| 301 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |