Skip to content

adzen4/c-json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C-json

Adzen's attempt at a JSON library. Warning: this is still in development and completely unusable.

Quickstart

#include "json.h"


int main(void)
{
	struct json_parse_result result;

	result = json_parse_file("config.json");
	if (result.error) {
		printf("Parsing error: %s\n", result.error);
	}

	config = result.value;

	...

	json_free(config);
}

About

Adzen's attempt at making a JSON library.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors