* Interfaces to save and restore the dump offset, so that printers can go * back to rewrite a header if required, while avoiding their knowing about * the global layout of the blocks. * * If we ever want to support writing textdumps to tape or other * stream-oriented target, we'll need to remove this. */
| 265 | * stream-oriented target, we'll need to remove this. |
| 266 | */ |
| 267 | void |
| 268 | textdump_saveoff(off_t *offsetp) |
| 269 | { |
| 270 | |
| 271 | *offsetp = textdump_offset; |
| 272 | } |
| 273 | |
| 274 | void |
| 275 | textdump_restoreoff(off_t offset) |
no outgoing calls
no test coverage detected