| 474 | |
| 475 | |
| 476 | LUA_API void lua_pushhstring (lua_State *L, |
| 477 | lua_Hash h, const char *s, size_t len) { |
| 478 | lua_lock(L); |
| 479 | luaC_checkGC(L); |
| 480 | setsvalue2s(L, L->top, luaS_newhstr(L, h, s, len)); |
| 481 | api_incr_top(L); |
| 482 | lua_unlock(L); |
| 483 | } |
| 484 | |
| 485 | |
| 486 | LUA_API void lua_pushstring (lua_State *L, const char *s) { |
nothing calls this directly
no test coverage detected