About the Project
This project is a basic JSON parser built in C. It was a way for me to learn more about parsing data formats and managing memory in C. The parser handles simple JSON data like objects and arrays, though it’s still a work in progress with room for further development.
Features
- Supports common JSON types like objects, arrays, strings, and numbers.
- Basic error handling for malformed JSON.
- Written in pure C with dynamic memory management.
Usage
To try out the project, you can clone the repository and follow these steps:
- Clone the repository:
git clone https://github.com/rpeky/C-JSON-Parser.git
- Navigate to the project directory:
cd C-JSON-Parser
- Compile the project:
make
- Run the parser:
./build/json_parser
Check out the GitHub repository for more details and updates.