Skip to content

Latest commit

 

History

8 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSON.h

A (almost) full ecma-404 single header json parser/library

Usage

#define JSONH_IMPL  // include implementation
#include "jsonh.h"  // header, see here for api functions/docs
int main(){
    // example code
    jsonh_t* json = jsonh_read("file.json");

    jsonh_obj_add(json,"number",jsonh_new_number(6.7));

    jsonh_write(stdout, json);

    jsonh_delete(json);
    return 0;
}

About

single header json parser/lib

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages