| 170 | |
| 171 | |
| 172 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) { |
| 173 | const char *msg; |
| 174 | va_list argp; |
| 175 | va_start(argp, fmt); |
| 176 | msg = luaO_pushvfstring(L, fmt, argp); |
| 177 | va_end(argp); |
| 178 | return msg; |
| 179 | } |
| 180 | |
| 181 | |
| 182 | void luaO_chunkid (char *out, const char *source, size_t bufflen) { |
no test coverage detected