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

Userland: tar: support extracting gzipped files

This commit is contained in:
Peter Elliott 2020-10-03 11:59:41 -07:00 committed by Andreas Kling
parent b7c7c80ee2
commit 1b3f9c170c
5 changed files with 27 additions and 8 deletions

View file

@ -55,6 +55,7 @@ public:
TarStream(InputStream&);
void advance();
bool finished() const { return m_finished; }
bool valid() const;
const Header& header() const { return m_header; }
TarFileStream file_contents();