summaryrefslogtreecommitdiff
path: root/jsmn.h
Commit message (Collapse)AuthorAge
* changed jsmnerr_t type to intSerge A. Zaitsev2015-10-17
|
* json token type enum doesn't start with zero value anymore, fixes #24Serge A. Zaitsev2015-10-17
|
* including stddef.h in the jsmn.h, fixed issue #28Serge A. Zaitsev2014-11-17
|
* jsmn.h:28:22: warning: commas at the end of enumerator lists are a ↵Wizard Tai2014-08-23
| | | | | | | | C99-specific feature [-Wc99-extensions] WITH: -std=c89 -Wall -pedantic -Wno-declaration-after-statement
* Added "extern C" to use it with CPP.Gabriel Gritsch2014-02-21
|
* Integrate changes made by Serge Zaitsev.Gabriel Gritsch2014-02-21
|
* - Added possibility to specify the lenght of the input buffer (if not ↵Gabriel Gritsch2014-02-16
| | | | | | null-terminated). - Added "extern C" to use it with CPP.
* - Added possibility to specify the lenght of the input buffer (if not ↵Gabriel Gritsch2014-02-12
| | | | | | null-terminated). - Added "extern C" to use it with CPP.
* a proper fix for signed comparisonSerge A. Zaitsev2014-02-09
|
* fixed typoSerge A. Zaitsev2012-10-01
|
* added optional parent token pointer support. Increases parsing speedSerge A. Zaitsev2012-09-26
|
* fixed: superior node size is now an index, not a pointer (safe to realloc)Serge A. Zaitsev2012-02-02
|
* tested partial parser for strings, added primitive string parser test, fixed ↵Serge A. Zaitsev2012-02-01
| | | | token allocation
* removed JSON string and token array from parser internals, because they must ↵Serge A. Zaitsev2012-02-01
| | | | not be saved between parse() calls
* changed API: parse now is more flexible, but init jsut resets the parser; ↵Serge A. Zaitsev2012-02-01
| | | | added new test macro to compate strings, fixed Makefile
* Complex types (objects and arrays) now have also size - number of child elementsSerge A. Zaitsev2010-12-28
|
* All objects renamed using jsmn prefix to keep consistency and not be mixed ↵Serge A. Zaitsev2010-12-27
| | | | with other json libraries. Demo is now called just demo.
* Token manipulation functions changes. size_t replaced with unsigned int.Serge A. Zaitsev2010-11-17
|
* Design: primitive type implemented as a replacement to boolean/number/null. ↵Serge A. Zaitsev2010-11-17
| | | | String tokens point to the unquoted string
* Design: rewritten using parser structureSerge A. Zaitsev2010-11-16
|
* Design: some error codes addedSerge A. Zaitsev2010-11-16
|
* Feature: make difference between numbers and other primitivesSerge A. Zaitsev2010-11-16
|
* Fix: errpos has got a correct type nowSerge A. Zaitsev2010-11-15
|
* Demo separated from the jsmn code. Makefile changed. Some comments addedSerge A. Zaitsev2010-11-15
|
* Initial commit. Demo program is included in the jsmn.c code. Ugly names and ↵Serge A. Zaitsev2010-11-15
no comments. Please, don't read this changeset