** new zero-terminated string */
| 163 | ** new zero-terminated string |
| 164 | */ |
| 165 | TString *luaS_new (lua_State *L, const char *str) { |
| 166 | return luaS_newlstr(L, str, strlen(str)); |
| 167 | } |
| 168 | |
| 169 | |
| 170 | Udata *luaS_newudata (lua_State *L, size_t s) { |
no test coverage detected