mirror of
https://github.com/NixOS/nix
synced 2025-06-27 08:31:16 +02:00
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.
11 lines
152 B
C++
11 lines
152 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace nix {
|
|
|
|
std::string compressXZ(const std::string & in);
|
|
|
|
std::string decompressXZ(const std::string & in);
|
|
|
|
}
|