| 2301 | |
| 2302 | |
| 2303 | LUA_API void lua_pushstring (lua_State *L, const char *s) { |
| 2304 | if (s == NULL) |
| 2305 | lua_pushnil(L); |
| 2306 | else |
| 2307 | lua_pushlstring(L, s, strlen(s)); |
| 2308 | } |
| 2309 | |
| 2310 | |
| 2311 | LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt, |
no test coverage detected