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