Michael Clark | f0d0888 | 2007-03-13 08:26:18 +0000 | [diff] [blame^] | 1 | <h2>JSON-C - A JSON implementation in C</h2> |
| 2 | <p>Latest release: <a href="json-c-0.1.tar.gz">json-c-0.1.tar.gz</a></p> |
| 3 | |
| 4 | <p>JSON-C implements a reference counting object model that allows you |
| 5 | to easily construct JSON objects in C, output them as JSON formatted strings |
| 6 | and parse JSON formatted strings back into the C representation of JSON |
| 7 | objects.</p> |
| 8 | |
| 9 | <p>Minimal documentation exists <a href="doc/html/json__object_8h.html">here</a>, |
| 10 | Although you are probably better reading the example code in test1.c.</p> |
| 11 | |
| 12 | <p>JSON-C currently depends on some gcc 3.0+ features so can probably only be |
| 13 | compiled with gcc 3.0+. It also uses some specifc glibc functions such as |
| 14 | vasprintf. Patches welcome to port to other compilers / platforms.</p> |
| 15 | |
| 16 | <p>Please send bug reports to <a href="mailto:michael@metaparadigm.com">michael@metaparadigm.com</a></p> |
| 17 | |
| 18 | <h3>Anonymous CVS</h3> |
| 19 | <p><code># <b>export CVSROOT=:pserver:anoncvs@cvs.metaparadigm.com:/cvsroot</b><br> |
| 20 | # <b>cvs login</b><br> |
| 21 | Logging in to :pserver:anoncvs@cvs.metaparadigm.com:2401/cvsroot<br> |
| 22 | CVS password: <enter '<b>anoncvs</b>'><br> |
| 23 | # <b>cvs co json-c</b></code></p> |
| 24 | |
| 25 | <p>Copyright Metaparadigm Pte. Ltd. 2004. <a href="mailto:michael@metaparadigm.com">Michael Clark </a></p> |
| 26 | |
| 27 | <p>This program is free software; you can redistribute it and/or |
| 28 | modify it under the terms of the GNU Lesser General Public (LGPL) |
| 29 | License as published by the Free Software Foundation; either |
| 30 | version 2.1 of the License, or (at your option) any later version.</p> |
| 31 | |
| 32 | <hr> |