ujson
Complete and simple JSON reader and writer written in C
ujson.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 /*
3  * Copyright (C) 2021-2024 Cyril Hrubis <metan@ucw.cz>
4  */
5 
6 #ifndef UJSON_H
7 #define UJSON_H
8 
9 #include <ujson_common.h>
10 #include <ujson_reader.h>
11 #include <ujson_writer.h>
12 
13 #endif /* UJSON_H */
Common JSON reader/writer definitions.
A recursive descend JSON parser.
A JSON writer.