1/**
2\example reformatter/json_reformat.c
3\example example/parse_config.c
4*/
5
6/*!
7    \mainpage Yet Another JSON Library (YAJL)
8    \author Lloyd Hilaiel
9    \date 2007-2014
10
11Yet Another JSON Library (YAJL) is a small event-driven (SAX-style)
12JSON parser written in ANSI C, and a small validating JSON
13generator. YAJL is released under the permissive ISC license.
14
15\section features Features
16
17   -# Stream (incremental) parsing and generation of JSON
18   -# ANSI C
19   -# Human readable error messages with context
20   -# tiny
21   -# event driven
22   -# support for generating "beautified" JSON
23   -# includes
24It also includes a small simplified tree interface for
25simplified parsing and extraction of data from smallish JSON documents.
26
27\section usage Usage
28
29See <a href="reformatter_2json_reformat_8c-example.html">json_reformat.c</a> for a complete example of stream based parsing
30and generation of JSON.  See <a href="example_2parse_config_8c-example.html">parse_config.c</a> for an example of the
31simplified tree interface.
32
33*/
34