| 414 | |
| 415 | |
| 416 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) { |
| 417 | const char *msg; |
| 418 | va_list argp; |
| 419 | va_start(argp, fmt); |
| 420 | msg = luaO_pushvfstring(L, fmt, argp); |
| 421 | va_end(argp); |
| 422 | return msg; |
| 423 | } |
| 424 | |
| 425 | |
| 426 | /* number of chars of a literal string without the ending \0 */ |
no test coverage detected