| 145 | |
| 146 | |
| 147 | TString *luaS_createlngstrobj (lua_State *L, size_t l) { |
| 148 | TString *ts = createstrobj(L, l, LUA_TLNGSTR, G(L)->seed); |
| 149 | ts->u.lnglen = l; |
| 150 | return ts; |
| 151 | } |
| 152 | |
| 153 | |
| 154 | void luaS_remove (lua_State *L, TString *ts) { |
no test coverage detected