1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 3 <head> 4 <title>JSON-C - A JSON implementation in C</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 6 </head> 7 <body> 8 <h2>JSON-C - A JSON implementation in C</h2> 9 10 <h3>Overview</h3> 11 <p>JSON-C implements a reference counting object model that allows you to easily 12 construct JSON objects in C, output them as JSON formatted strings and parse 13 JSON formatted strings back into the C representation of JSON objects. 14 It aims to conform to <a href="https://tools.ietf.org/html/rfc7159">RFC 7159</a>. 15 </p> 16 17 <h3>Building</h3> 18 <p>To setup JSON-C to build on your system please run <tt>configure</tt> and <tt>make</tt>.</p> 19 <p>If you are on Win32 cmake is required, generally:</p> 20 <ul> 21 <li>mkdir build</li> 22 <li>cd build</li> 23 <li>cmake ..</li> 24 <li>msbuild "json-c.vcxproj" /m /verbosity:normal /p:OutDir=lib\</li> 25 <li>Or, open the project in Visual Studio</li> 26 </ul> 27 28 <h3>Documentation</h3> 29 <P>Doxygen generated documentation exists <a href="http://json-c.github.io/json-c/">here</a>.</P> 30 31 <h3><a href="https://github.com/json-c/json-c">GIT Reposository</a></h3> 32 <p><strong><code>git clone https://github.com/json-c/json-c.git</code></strong></p> 33 34 <h3><a href="http://groups.google.com/group/json-c">Mailing List</a></h3> 35 <pi>Send email to <strong><code>json-c <i><at></i> googlegroups <i><dot></i> com</code></strong></p> 36 37 <h3><a href="COPYING">License</a></h3> 38 <p>This program is free software; you can redistribute it and/or modify it under the terms of the MIT License.</p> 39 <hr/> 40 </body> 41 </html>
This page was automatically generated by LXR 0.3.1. • OpenWrt