about summary refs log tree commit diff
path: root/src/libutil/compression.hh
blob: eb1697fc4aa4e26d35c91c326b873546b05e3319 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <string>

namespace nix {

std::string compressXZ(const std::string & in);

std::string decompressXZ(const std::string & in);

}