Skip to content

akheron/jansson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3c51112 · Jan 31, 2017
Sep 18, 2016
Sep 18, 2016
Jan 27, 2017
Aug 30, 2016
Jan 27, 2017
Jan 27, 2017
Apr 6, 2014
Dec 12, 2014
Jul 31, 2014
Sep 18, 2016
Nov 13, 2016
Mar 28, 2013
Sep 18, 2016
Aug 30, 2016
Apr 28, 2016
Jun 3, 2016
Sep 18, 2016
Jan 7, 2010
Jan 6, 2013

Repository files navigation

Jansson README

https://travis-ci.org/akheron/jansson.png https://ci.appveyor.com/api/projects/status/lmhkkc4q8cwc65ko https://coveralls.io/repos/akheron/jansson/badge.png?branch=master

Jansson is a C library for encoding, decoding and manipulating JSON data. 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 the MIT license; see LICENSE in the source distribution for details.

Compilation and Installation

If you obtained a source tarball, just use the 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, the ./configure script has to be generated first. The easiest way is to use autoreconf:

$ autoreconf -i

Documentation

Documentation is available at http://jansson.readthedocs.io/en/latest/.

The documentation source is in the doc/ subdirectory. To generate HTML documentation, invoke:

$ make html

Then, point your browser to doc/_build/html/index.html. Sphinx 1.0 or newer is required to generate the documentation.