Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Jonas Arnold 1aa3a601d7 added microjson lib, 4 years ago
..
COPYING added microjson lib, 4 years ago
Makefile added microjson lib, 4 years ago
NEWS.adoc added microjson lib, 4 years ago
README.adoc added microjson lib, 4 years ago
control added microjson lib, 4 years ago
example1.c added microjson lib, 4 years ago
example2.c added microjson lib, 4 years ago
example3.c added microjson lib, 4 years ago
example4.c added microjson lib, 4 years ago
microjson.adoc added microjson lib, 4 years ago
mjson.adoc added microjson lib, 4 years ago
mjson.c added microjson lib, 4 years ago
mjson.h added microjson lib, 4 years ago
test_microjson.c added microjson lib, 4 years ago
test_microjson_wignore.c added microjson lib, 4 years ago

README.adoc

= README for microjson =

This is a tiny JSON parser in C that uses only fixed-extent storage.

This code parses the largest subset of JSON that can be unpacked into
static C structures, without using malloc(3). It is very small and
very low-footprint, intended for use in constrained embedded
environments. It may also be of interest for code where malloc is
verboten to reduce reliability and security vulnerabilities.

Apologies about the name collision; I didn't think to check for other
projects with this name when I first created it.

There's a manual page, link:mjson.html[], and a tutorial: link:microjson.html[]