- Notifications
You must be signed in to change notification settings - Fork827
C library for encoding, decoding and manipulating JSON data
License
akheron/jansson
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Jansson is a C library for encoding, decoding and manipulating JSONdata. Its main features and design principles are:
- Simple and intuitive API and data model
- Comprehensive documentation
- No dependencies on other libraries
- Full Unicode support (UTF-8)
- Extensive test suite
Jansson is licensed under theMIT license; see LICENSE in thesource distribution for details.
If you obtained ajansson-X.Y.tar.*
tarball from GitHub Releases, just usethe standard autotools commands:
$ ./configure$ make$ make install
To run the test suite, invoke:
$ make check
If the source has been checked out from a Git repository, theconfigure
script has to be generated first. The easiest way is to use autoreconf:
$ autoreconf -i
Documentation is available athttp://jansson.readthedocs.io/en/latest/.
The documentation source is in thedoc/
subdirectory. To generateHTML documentation, invoke:
$ make html
Then, point your browser todoc/_build/html/index.html
.Sphinx1.0 or newer is required to generate the documentation.
- Documentation
- Issue tracker
- Mailing list
- Wiki contains some development documentation
About
C library for encoding, decoding and manipulating JSON data