https://github.com/imarvinle/lcjson
implement a simple json parser using recursive descent
https://github.com/imarvinle/lcjson
c json parser recursive-descent-parser
Last synced: about 1 month ago
JSON representation
implement a simple json parser using recursive descent
- Host: GitHub
- URL: https://github.com/imarvinle/lcjson
- Owner: imarvinle
- Created: 2018-12-27T12:44:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T03:32:13.000Z (about 6 years ago)
- Last Synced: 2025-01-30T12:31:27.707Z (3 months ago)
- Topics: c, json, parser, recursive-descent-parser
- Language: C
- Homepage:
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# a simple implement of json parser using recursive desent
## TODO
* 解析字符串
* 解析对象
* 解析数组
* 内存管理
* 生成器
* 接口设计