11 lines
218 B
C
11 lines
218 B
C
#ifndef PICOMPRESS_H
|
|
#define PICOMPRESS_H
|
|
|
|
#include "pibytearray.h"
|
|
|
|
PIByteArray piCompress(const PIByteArray & ba, int level = 6);
|
|
|
|
PIByteArray piDecompress(const PIByteArray & zba);
|
|
|
|
#endif // PICOMPRESS_H
|