| 1252 | |
| 1253 | |
| 1254 | LUA_API void lua_len (lua_State *L, int idx) { |
| 1255 | TValue *t; |
| 1256 | lua_lock(L); |
| 1257 | t = index2value(L, idx); |
| 1258 | luaV_objlen(L, L->top, t); |
| 1259 | api_incr_top(L); |
| 1260 | lua_unlock(L); |
| 1261 | } |
| 1262 | |
| 1263 | |
| 1264 | LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) { |
no test coverage detected