| 167 | |
| 168 | |
| 169 | TString *luaS_createlngstrobj (lua_State *L, size_t l) { |
| 170 | TString *ts = createstrobj(L, l, LUA_VLNGSTR, G(L)->seed); |
| 171 | ts->u.lnglen = l; |
| 172 | return ts; |
| 173 | } |
| 174 | |
| 175 | |
| 176 | void luaS_remove (lua_State *L, TString *ts) { |
no test coverage detected