summaryrefslogtreecommitdiff
path: root/src/mbgl/util/compression.hpp
blob: 8f89a3ac03212b669ef2a63f4a0b61e641f9f222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <string>

namespace mbgl {
namespace util {

std::string compress(const std::string &raw);
std::string decompress(const std::string &raw);

} // namespace util
} // namespace mbgl