Nix/src/libexpr/json-to-value.hh

15 lines
195 B
C++

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