5 #include <ctu_json_api.h>
35 #define JSON_TYPE(id, str) id,
#define RET_NOTNULL
annotate the return value as not being null
#define IN_NOTNULL
annotate a parameter as not being null
#define IN_DOMAIN(cmp, it)
annotate a parameter as being bounded by the expression of cmp and it
#define RET_INSPECT
annotate the return value as needing to be inspected this is the same as CT_NODISCARD but implies tha...
CT_JSON_API const char * json_kind_name(json_kind_t kind)
get the name of a json kind
CT_JSON_API void json_print(const json_t *json, io_t *io, size_t indent, bool tabs)
pretty print a json value to an io
CT_JSON_API json_t * json_array_get(const json_t *json, size_t index)
get an array element by index
json_kind_t
the kind of json value
CT_JSON_API json_t * json_map_get(const json_t *json, const char *key)
get a json value from an object by key
CT_JSON_API json_parse_t json_parse(io_t *io, logger_t *logger, arena_t *arena)
parse an io into a json value parse the contents of an io object into a json value
CT_JSON_API json_t * json_scan(io_t *io, logger_t *logger, arena_t *arena)
scan an io into a json value scan the contents of an io object into a json value
mpz_t integer
the integer value of this node
text_view_t string
the string value of this node
typevec_t array
the array value of this node
where_t where
the source location of the json value
bool boolean
the boolean value of this node
json_kind_t kind
the kind of json value
const map_t * object
the object value of this node
float real
the float value of this node
a position in a source file
a non-owning view of text
A vector with a fixed type size.
a generic vector of pointers
a location inside a scanner locations are inclusive and 0-based
typedefCT_BEGIN_API struct json_t json_t