mirror of
https://github.com/RGBCube/serenity
synced 2025-07-13 16:47:36 +00:00
9 lines
No EOL
222 B
C++
9 lines
No EOL
222 B
C++
#include <AK/ByteBuffer.h>
|
|
#include <AK/Optional.h>
|
|
#include <AK/String.h>
|
|
|
|
class Gzip {
|
|
public:
|
|
static bool is_compressed(const ByteBuffer& data);
|
|
static Optional<ByteBuffer> decompress(const ByteBuffer& data);
|
|
}; |