mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
10 lines
241 B
C++
10 lines
241 B
C++
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <nix/types.hh>
|
|
#include <string>
|
|
|
|
nix::Strings parseAttrPath(const std::string & s);
|
|
bool isVarName(const std::string & s);
|
|
std::ostream & printStringValue(std::ostream & str, const char * string);
|