| 261 | |
| 262 | |
| 263 | LUA_API const char *lua_typename (lua_State *L, int t) { |
| 264 | UNUSED(L); |
| 265 | api_check(L, LUA_TNONE <= t && t < LUA_NUMTYPES, "invalid type"); |
| 266 | return ttypename(t); |
| 267 | } |
| 268 | |
| 269 | |
| 270 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |
no outgoing calls
no test coverage detected