nix-gh/src/libexpr/json-to-value.hh
2014-07-04 13:34:15 +02:00

14 lines
175 B
C++

#pragma once
#include "eval.hh"
#include <string>
namespace nix {
MakeError(JSONParseError, EvalError)
void parseJSON(EvalState & state, const string & s, Value & v);
}