| 138 | } |
| 139 | |
| 140 | int32_t ZipWriter::StartAlignedEntry(const char* path, size_t flags, uint32_t alignment) { |
| 141 | return StartAlignedEntryWithTime(path, flags, time_t(), alignment); |
| 142 | } |
| 143 | |
| 144 | int32_t ZipWriter::StartEntryWithTime(const char* path, size_t flags, time_t time) { |
| 145 | uint32_t alignment = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected