blob: 744a7d54af84bb25a42b5a10bdae812d5ecaf297 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
///@file
#include <string>
#include <regex>
namespace nix::regex {
std::string quoteRegexChars(const std::string & raw);
std::regex storePathRegex(const std::string & storeDir);
}
|