| 306 | |
| 307 | |
| 308 | static void |
| 309 | print_separator(struct separator sep, FILE *fout) |
| 310 | { |
| 311 | if (sep.separator_zero) |
| 312 | fputc('\000', fout); |
| 313 | else if (sep.separator) |
| 314 | fputs(sep.separator, fout); |
| 315 | } |
| 316 | |
| 317 | |
| 318 | /* |
no outgoing calls
no test coverage detected