| 326 | } |
| 327 | |
| 328 | void write_name_quoted(const char *name, FILE *fp, int terminator) |
| 329 | { |
| 330 | if (terminator) { |
| 331 | quote_c_style(name, NULL, fp, 0); |
| 332 | } else { |
| 333 | fputs(name, fp); |
| 334 | } |
| 335 | fputc(terminator, fp); |
| 336 | } |
| 337 | |
| 338 | void write_name_quoted_relative(const char *name, const char *prefix, |
| 339 | FILE *fp, int terminator) |
no test coverage detected