https://github.com/uiur/json-parser
https://github.com/uiur/json-parser
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/uiur/json-parser
- Owner: uiur
- Created: 2021-02-02T14:35:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-06T09:20:20.000Z (over 4 years ago)
- Last Synced: 2025-01-14T19:11:56.147Z (5 months ago)
- Language: C
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# json-parser
An implementation of JSON parser in C.The motivation is to learn C and data structures the hard way.
## usage
```
$ make
$ echo '{"foo": 1, "bar": 2}' | ./main 'foo'
```