| 389 | } |
| 390 | |
| 391 | inline void outputString(char * str, FILE * output) |
| 392 | { |
| 393 | // Do the error checking here so we don't have to do it elsewhere. |
| 394 | if (fputs(str, output) < 0) |
| 395 | { |
| 396 | fatalError("samblaster: Unable to write to output file.\n"); |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | // Output the line. |
| 401 | inline void writeLine(splitLine_t * line, FILE * output) |
no test coverage detected