| 452 | |
| 453 | |
| 454 | LUA_API void lua_pushstring (lua_State *L, const char *s) { |
| 455 | if (s == NULL) |
| 456 | lua_pushnil(L); |
| 457 | else |
| 458 | lua_pushlstring(L, s, strlen(s)); |
| 459 | } |
| 460 | |
| 461 | |
| 462 | LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt, |
no test coverage detected