14 lines
170 B
C
Raw Normal View History

2018-10-29 00:11:23 +01:00
#ifndef GZIP_H
#define GZIP_H
#include <QByteArray>
class QIODevice;
2018-10-29 00:11:23 +01:00
namespace Gzip
{
QByteArray uncompress(QIODevice *device, qint64 limit = 0);
2018-10-29 00:11:23 +01:00
}
#endif // GZIP_H