1 // Copyright 2016-2021 Doug Moen
2 // Licensed under the Apache License, version 2.0
3 // See accompanying file LICENSE or https://www.apache.org/licenses/LICENSE-2.0
4 
5 #ifndef LIBCURV_JSON_H
6 #define LIBCURV_JSON_H
7 
8 #include <libcurv/value.h>
9 #include <ostream>
10 
11 namespace curv {
12 
13 void write_json_string(const char*, std::ostream&);
14 void write_json_value(Value, std::ostream&);
15 
16 } // namespace curv
17 #endif // header guard
18