nix-super/src/libexpr/json-to-value.hh

18 lines
224 B
C++
Raw Normal View History

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