** new zero-terminated string */
| 168 | ** new zero-terminated string |
| 169 | */ |
| 170 | TString *luaS_new (lua_State *L, const char *str) { |
| 171 | return luaS_newlstr(L, str, strlen(str)); |
| 172 | } |
| 173 | |
| 174 | |
| 175 | Udata *luaS_newudata (lua_State *L, size_t s, Table *e) { |
no test coverage detected