| 289 | } |
| 290 | |
| 291 | FILE *get_tempfile_fp(struct tempfile *tempfile) |
| 292 | { |
| 293 | if (!is_tempfile_active(tempfile)) |
| 294 | BUG("get_tempfile_fp() called for inactive object"); |
| 295 | return tempfile->fp; |
| 296 | } |
| 297 | |
| 298 | int close_tempfile_gently(struct tempfile *tempfile) |
| 299 | { |
no test coverage detected