* Returns the total number of bytes fed to the hashfile so far (including ones * that have not been written out to the descriptor yet). */
| 89 | * that have not been written out to the descriptor yet). |
| 90 | */ |
| 91 | static inline off_t hashfile_total(struct hashfile *f) |
| 92 | { |
| 93 | return f->total + f->offset; |
| 94 | } |
| 95 | |
| 96 | static inline void hashwrite_u8(struct hashfile *f, uint8_t data) |
| 97 | { |
no outgoing calls
no test coverage detected