| 484 | |
| 485 | |
| 486 | LUA_API void lua_pushstring (lua_State *L, const char *s) { |
| 487 | if (s == NULL) |
| 488 | lua_pushnil(L); |
| 489 | else |
| 490 | lua_pushlstring(L, s, strlen(s)); |
| 491 | } |
| 492 | |
| 493 | |
| 494 | LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt, |
no test coverage detected