CGzip.h 223 B

123456789
  1. #include <AK/ByteBuffer.h>
  2. #include <AK/Optional.h>
  3. #include <AK/String.h>
  4. class CGzip {
  5. public:
  6. static bool is_compressed(const ByteBuffer& data);
  7. static Optional<ByteBuffer> decompress(const ByteBuffer& data);
  8. };