| 150 | |
| 151 | |
| 152 | TString *luaS_createlngstrobj (lua_State *L, size_t l) { |
| 153 | TString *ts = createstrobj(L, l, LUA_TLNGSTR, G(L)->seed); |
| 154 | ts->u.lnglen = l; |
| 155 | return ts; |
| 156 | } |
| 157 | |
| 158 | |
| 159 | void luaS_remove (lua_State *L, TString *ts) { |
no test coverage detected