| 255 | |
| 256 | |
| 257 | LUA_API const char *lua_typename (lua_State *L, int t) { |
| 258 | UNUSED(L); |
| 259 | api_check(L, LUA_TNONE <= t && t < LUA_NUMTAGS, "invalid tag"); |
| 260 | return ttypename(t); |
| 261 | } |
| 262 | |
| 263 | |
| 264 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |
no outgoing calls
no test coverage detected