forked from lix-project/lix
eff5021eaa
This is used by the Hydra queue runner, but since it may also be useful for the C++ rewrite of nix-push, I'm putting it here.
12 lines
152 B
C++
12 lines
152 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace nix {
|
|
|
|
std::string compressXZ(const std::string & in);
|
|
|
|
std::string decompressXZ(const std::string & in);
|
|
|
|
}
|