mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
13 lines
251 B
C++
13 lines
251 B
C++
#ifndef __DECOMPRESS_HH_INCLUDED__
|
|
#define __DECOMPRESS_HH_INCLUDED__
|
|
|
|
#include <string>
|
|
|
|
using std::string;
|
|
|
|
string decompressZlib( char * bufptr, unsigned length );
|
|
|
|
string decompressBzip2( char * bufptr, unsigned length );
|
|
|
|
#endif // DECOMPRESS_HH
|