| 466 | |
| 467 | |
| 468 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) { |
| 469 | const char *msg; |
| 470 | va_list argp; |
| 471 | va_start(argp, fmt); |
| 472 | msg = luaO_pushvfstring(L, fmt, argp); |
| 473 | va_end(argp); |
| 474 | return msg; |
| 475 | } |
| 476 | |
| 477 | |
| 478 | /* number of chars of a literal string without the ending \0 */ |
no test coverage detected