| 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 | ts->shrlen = 0xFF; /* signals that it is a long string */ |
| 161 | return ts; |
| 162 | } |
| 163 | |
| 164 | |
| 165 | void luaS_remove (lua_State *L, TString *ts) { |
no test coverage detected