mirror of
https://github.com/json-c/json-c.git
synced 2026-03-30 02:19:06 +08:00
* printbuf.c - C. Watford (christopher dot watford at gmail dot com)
Added a Win32/Win64 compliant implementation of vasprintf
* debug.c - C. Watford (christopher dot watford at gmail dot com)
Removed usage of vsyslog on Win32/Win64 systems, needs to be handled
by a configure script
* json_object.c - C. Watford (christopher dot watford at gmail dot com)
Added scope operator to wrap usage of json_object_object_foreach, this
needs to be rethought to be more ANSI C friendly
* json_object.h - C. Watford (christopher dot watford at gmail dot com)
Added Microsoft C friendly version of json_object_object_foreach
* json_tokener.c - C. Watford (christopher dot watford at gmail dot com)
Added a Win32/Win64 compliant implementation of strndup
* json_util.c - C. Watford (christopher dot watford at gmail dot com)
Added cast and mask to suffice size_t v. unsigned int conversion
correctness
* json_tokener.c - sign reversal issue on error info for nested object parse
spotted by Johan Bj�rklund (johbjo09 at kth.se)
* json_object.c - escape " in json_escape_str
* Change to automake and libtool to build shared and static library
Michael Clark <michael@metaparadigm.com>
git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@4 327403b1-1117-474d-bef2-5cb71233fd97
This commit is contained in:
70
README.html
70
README.html
@@ -1,32 +1,38 @@
|
||||
<h2>JSON-C - A JSON implementation in C</h2>
|
||||
<p>Latest release: <a href="json-c-0.1.tar.gz">json-c-0.1.tar.gz</a></p>
|
||||
|
||||
<p>JSON-C implements a reference counting object model that allows you
|
||||
to easily construct JSON objects in C, output them as JSON formatted strings
|
||||
and parse JSON formatted strings back into the C representation of JSON
|
||||
objects.</p>
|
||||
|
||||
<p>Minimal documentation exists <a href="doc/html/json__object_8h.html">here</a>,
|
||||
Although you are probably better reading the example code in test1.c.</p>
|
||||
|
||||
<p>JSON-C currently depends on some gcc 3.0+ features so can probably only be
|
||||
compiled with gcc 3.0+. It also uses some specifc glibc functions such as
|
||||
vasprintf. Patches welcome to port to other compilers / platforms.</p>
|
||||
|
||||
<p>Please send bug reports to <a href="mailto:michael@metaparadigm.com">michael@metaparadigm.com</a></p>
|
||||
|
||||
<h3>Anonymous CVS</h3>
|
||||
<p><code># <b>export CVSROOT=:pserver:anoncvs@cvs.metaparadigm.com:/cvsroot</b><br>
|
||||
# <b>cvs login</b><br>
|
||||
Logging in to :pserver:anoncvs@cvs.metaparadigm.com:2401/cvsroot<br>
|
||||
CVS password: <enter '<b>anoncvs</b>'><br>
|
||||
# <b>cvs co json-c</b></code></p>
|
||||
|
||||
<p>Copyright Metaparadigm Pte. Ltd. 2004. <a href="mailto:michael@metaparadigm.com">Michael Clark </a></p>
|
||||
|
||||
<p>This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public (LGPL)
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.</p>
|
||||
|
||||
<hr>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<title>JSON-C - A JSON implementation in C</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
</head>
|
||||
<body>
|
||||
<h2>JSON-C - A JSON implementation in C</h2>
|
||||
<p>Latest release: <a href="json-c-0.2.tar.gz">json-c-0.2.tar.gz</a></p>
|
||||
<p>JSON-C implements a reference counting object model that allows you to easily
|
||||
construct JSON objects in C, output them as JSON formatted strings and parse
|
||||
JSON formatted strings back into the C representation of JSON objects.</p>
|
||||
<p>Minimal documentation exists <a href="doc/html/json__object_8h.html">here</a>,
|
||||
Although you are probably better reading the example code in test1.c.</p>
|
||||
<p>To setup JSON-C to build on your system please run <tt>configure</tt> before
|
||||
compiling. If you are on Win32 and are not using the VS project file, be sure
|
||||
to rename <tt>config.h.win32</tt> to <tt>config.h</tt> before building.</p>
|
||||
<P>Win32 specific notes can be found <a href="README-WIN32.html">here</a>.</P>
|
||||
<p>Please send bug reports to <a href="mailto:michael@metaparadigm.com">michael@metaparadigm.com</a></p>
|
||||
<p>Please send Win32 bug reports to <a href="mailto:christopher.watford@gmail.com">christopher.watford@gmail.com</a></p>
|
||||
<h3>Anonymous CVS</h3>
|
||||
<p><code># <b>export CVSROOT=:pserver:anoncvs@cvs.metaparadigm.com:/cvsroot</b><br>
|
||||
# <b>cvs login</b><br>
|
||||
Logging in to :pserver:anoncvs@cvs.metaparadigm.com:2401/cvsroot<br>
|
||||
CVS password: <enter '<b>anoncvs</b>'><br>
|
||||
# <b>cvs co json-c</b></code></p>
|
||||
<p>Copyright Metaparadigm Pte. Ltd. 2004. <a href="mailto:michael@metaparadigm.com">Michael
|
||||
Clark </a>
|
||||
</p>
|
||||
<p>This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU Lesser General Public (LGPL) License as published by the
|
||||
Free Software Foundation; either version 2.1 of the License, or (at your
|
||||
option) any later version.</p>
|
||||
<hr>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user