2019-09-05 17:29:01 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <nix/types.hh>
|
|
|
|
#include <string>
|
|
|
|
|
2019-09-06 09:45:05 -07:00
|
|
|
nix::Strings parseAttrPath(const std::string & s);
|
|
|
|
bool isVarName(const std::string & s);
|
|
|
|
std::ostream & printStringValue(std::ostream & str, const char * string);
|