Skip to content

mohsenahmadi/tanto

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json parser and creator library in C

under development, not ready to use!

tanto.h

Using tanto

To use tanto you can include tanto.h header file.

#include "tanto.h"

typedef in tanto.h

TJSON_t

example usage

TJSON_t *json = NULL;
	
TJSON_t *node1 = tanto_init_node("hello", "world!", 1);
TJSON_t *node2 = tanto_init_node("parser", "tanto", 1);
tanto_push(&json, node1);
tanto_push(&json, node2);

tanto_write_file("hello_world.json", json);

you can find all usage examples in examples folder.

About

json parser and creator library in C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%