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

#include "ref.hh"

#include <string>

namespace nix {

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

ref<std::string> decompressXZ(const std::string & in);

}