mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
9 lines
No EOL
223 B
C++
9 lines
No EOL
223 B
C++
#include <AK/ByteBuffer.h>
|
|
#include <AK/Optional.h>
|
|
#include <AK/String.h>
|
|
|
|
class CGzip {
|
|
public:
|
|
static bool is_compressed(const ByteBuffer& data);
|
|
static Optional<ByteBuffer> decompress(const ByteBuffer& data);
|
|
}; |