| 181 | |
| 182 | |
| 183 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) { |
| 184 | const char *msg; |
| 185 | va_list argp; |
| 186 | va_start(argp, fmt); |
| 187 | msg = luaO_pushvfstring(L, fmt, argp); |
| 188 | va_end(argp); |
| 189 | return msg; |
| 190 | } |
| 191 | |
| 192 | |
| 193 | void luaO_chunkid (char *out, const char *source, size_t bufflen) { |
no test coverage detected