| 155 | |
| 156 | |
| 157 | TString *luaS_createlngstrobj (lua_State *L, size_t l) { |
| 158 | TString *ts = createstrobj(L, l, LUA_VLNGSTR, G(L)->seed); |
| 159 | ts->u.lnglen = l; |
| 160 | return ts; |
| 161 | } |
| 162 | |
| 163 | |
| 164 | void luaS_remove (lua_State *L, TString *ts) { |
no test coverage detected