| 226 | |
| 227 | |
| 228 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) { |
| 229 | const char *msg; |
| 230 | va_list argp; |
| 231 | va_start(argp, fmt); |
| 232 | msg = luaO_pushvfstring(L, fmt, argp); |
| 233 | va_end(argp); |
| 234 | return msg; |
| 235 | } |
| 236 | |
| 237 | |
| 238 | /* number of chars of a literal string without the ending \0 */ |
no test coverage detected