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.
- Host: GitHub
- URL: https://github.com/rohanvdvivedi/jsonparser
- Owner: RohanVDvivedi
- Created: 2017-06-25T06:06:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-19T16:07:18.000Z (9 months ago)
- Last Synced: 2025-05-23T00:39:00.072Z (8 months ago)
- Topics: json-data, json-grammar, json-parser, json-read, jsonparser
- Language: C
- Homepage:
- Size: 196 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`