mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-29 01:59:13 +02:00
8 lines
242 B
C++
8 lines
242 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
// inflate/deflate convenience wrapper. Uses zlib.
|
|
bool compress_string(const std::string& str, std::string *dest, int compressionlevel = 9);
|
|
bool decompress_string(const std::string& str, std::string *dest);
|