| 7430 | |
| 7431 | |
| 7432 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) { |
| 7433 | const char *msg; |
| 7434 | va_list argp; |
| 7435 | va_start(argp, fmt); |
| 7436 | msg = luaO_pushvfstring(L, fmt, argp); |
| 7437 | va_end(argp); |
| 7438 | return msg; |
| 7439 | } |
| 7440 | |
| 7441 | |
| 7442 | void luaO_chunkid (char *out, const char *source, size_t bufflen) { |
no test coverage detected