An open API service indexing awesome lists of open source software.

https://github.com/rohanvdvivedi/jsonparser

A JSON parsing library in C.
https://github.com/rohanvdvivedi/jsonparser

json-data json-grammar json-parser json-read jsonparser

Last synced: 6 months ago
JSON representation

A JSON parsing library in C.

Awesome Lists containing this project

README

          

# JSONparser
A C library to build parse tree for JSON grammar.

## Setup instructions
**Install dependencies :**
* [Cutlery](https://github.com/RohanVDvivedi/Cutlery)

**Download source code :**
* `git clone https://github.com/RohanVDvivedi/JSONparser.git`

**Build from source :**
* `cd JSONparser`
* `make clean all`

**Install from the build :**
* `sudo make install`
* ***Once you have installed from source, you may discard the build by*** `make clean`

## Using The library
* add `-ljsonparser -lcutlery` linker flag, while compiling your application
* do not forget to include appropriate public api headers as and when needed. this includes
* `#include`
* `#include`

## Instructions for uninstalling library

**Uninstall :**
* `cd JSONparser`
* `sudo make uninstall`