1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:07:35 +00:00

LibCompress: Move loading XZ blocks into its own function

This commit is contained in:
Tim Schumacher 2023-04-05 16:55:25 +02:00 committed by Brian Gianforcaro
parent e6b1e1bb33
commit e9789e9f36
2 changed files with 126 additions and 119 deletions

View file

@ -112,6 +112,7 @@ private:
XzDecompressor(NonnullOwnPtr<CountingStream>);
ErrorOr<bool> load_next_stream();
ErrorOr<void> load_next_block(u8 encoded_block_header_size);
ErrorOr<void> finish_current_block();
ErrorOr<void> finish_current_stream();