| 459 | |
| 460 | |
| 461 | LUA_API void lua_pushstring (lua_State *L, const char *s) { |
| 462 | if (s == NULL) |
| 463 | lua_pushnil(L); |
| 464 | else |
| 465 | lua_pushlstring(L, s, strlen(s)); |
| 466 | } |
| 467 | |
| 468 | |
| 469 | LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt, |
no test coverage detected