| 421 | |
| 422 | |
| 423 | const char *luaO_pushfstring(lua_State *L, const char *fmt, ...) { |
| 424 | const char *msg; |
| 425 | va_list argp; |
| 426 | va_start(argp, fmt); |
| 427 | msg = luaO_pushvfstring(L, fmt, argp); |
| 428 | va_end(argp); |
| 429 | return msg; |
| 430 | } |
| 431 | |
| 432 | |
| 433 | /* number of chars of a literal string without the ending \0 */ |
no test coverage detected