Name Date Size #Lines LOC

..--

android/H26-Jul-2015-4010

cmake/H26-Jul-2015-472420

doc/H26-Jul-2015-2,9591,975

src/H26-Jul-2015-5,7724,142

test/H26-Jul-2015-4,6173,325

Android.mkHD26-Jul-2015578 3124

CHANGESHD26-Jul-201516 KiB680407

CMakeLists.txtHD26-Jul-201522.1 KiB659550

CleanSpec.mkHD26-Jul-20152.2 KiB500

LICENSEHD26-Jul-20151.1 KiB2016

Makefile.amHD26-Jul-2015302 116

README.rstHD26-Jul-20151.5 KiB6640

appveyor.ymlHD26-Jul-2015119 66

configure.acHD26-Jul-20153 KiB11293

jansson.pc.inHD26-Jul-2015244 119

release.shHD26-Jul-20151.6 KiB7144

README.rst

1Jansson README
2==============
3
4.. image:: https://travis-ci.org/akheron/jansson.png
5  :target: https://travis-ci.org/akheron/jansson
6
7.. image:: https://ci.appveyor.com/api/projects/status/lmhkkc4q8cwc65ko
8  :target: https://ci.appveyor.com/project/akheron/jansson
9
10Jansson_ is a C library for encoding, decoding and manipulating JSON
11data. Its main features and design principles are:
12
13- Simple and intuitive API and data model
14
15- Comprehensive documentation
16
17- No dependencies on other libraries
18
19- Full Unicode support (UTF-8)
20
21- Extensive test suite
22
23Jansson is licensed under the `MIT license`_; see LICENSE in the
24source distribution for details.
25
26
27Compilation and Installation
28----------------------------
29
30If you obtained a source tarball, just use the standard autotools
31commands::
32
33   $ ./configure
34   $ make
35   $ make install
36
37To run the test suite, invoke::
38
39   $ make check
40
41If the source has been checked out from a Git repository, the
42./configure script has to be generated first. The easiest way is to
43use autoreconf::
44
45   $ autoreconf -i
46
47
48Documentation
49-------------
50
51Prebuilt HTML documentation is available at
52http://www.digip.org/jansson/doc/.
53
54The documentation source is in the ``doc/`` subdirectory. To generate
55HTML documentation, invoke::
56
57   $ make html
58
59Then, point your browser to ``doc/_build/html/index.html``. Sphinx_
601.0 or newer is required to generate the documentation.
61
62
63.. _Jansson: http://www.digip.org/jansson/
64.. _`MIT license`: http://www.opensource.org/licenses/mit-license.php
65.. _Sphinx: http://sphinx.pocoo.org/
66