From 96f1bf5649de60c9ce13d7d58f7c7c2dd4b52855 Mon Sep 17 00:00:00 2001 From: rafagafe Date: Tue, 4 Apr 2017 02:03:07 +0200 Subject: [PATCH] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b051a34..2552e77 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # tiny-json -tiny-json is a versatile and easy to use json parser in C suitable for IoT. +tiny-json is a versatile and easy to use json parser in C suitable for embedded systems. It is fast, robust and portable. + +It is not only a tokenizer. You can get data in string format or get the primitives values in C type variables without performance loss. + +You can get the JSON fields one on one. Or get their values by their names. This helps you to save a lot of source code lines and development time. * It does not use recursivity. * It does not use dynamic memory. The memory you use can be reserved statically.