| 169 | |
| 170 | |
| 171 | static int tcreate(lua_State *L) { |
| 172 | const int narr = luaL_optint(L, 1, 0); |
| 173 | const int nhash = luaL_optint(L, 2, 0); |
| 174 | lua_createtable(L, narr, nhash); |
| 175 | return 1; |
| 176 | } |
| 177 | |
| 178 | |
| 179 | #ifdef LUA_READONLY_TABLES |
nothing calls this directly
no test coverage detected