summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* added some tests for key/values nodes and added some stricter validationsSerge A. Zaitsev2014-11-17
|
* moved i declaration to the top of the block, issue #38 fixedSerge A. Zaitsev2014-11-17
|
* including stddef.h in the jsmn.h, fixed issue #28Serge A. Zaitsev2014-11-17
|
* removed trailing spacesSerge A. Zaitsev2014-11-17
|
* implemented key/value hierarchy; added 2 examples; fixed some warnings in testsSerge A. Zaitsev2014-11-17
|
* Merged in ↵Serge Zaitsev2014-10-09
|\ | | | | | | | | | | setekhid/jsmn/setekhid/jsmnh2822-warning-commas-at-the-end-of-e-1408807731663 (pull request #11) jsmn.h:28:22: warning: commas at the end of enumerator lists are a C99-specific feature [-Wc99-extensions]
| * 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
* removed JSMN_SUCCESS value from the readmeSerge A. Zaitsev2014-02-21
|
* Merged in MacGritsch/jsmn-patch (pull request #7)Serge Zaitsev2014-02-21
|\ | | | | | | Added "extern C" to use it with CPP.
| * Added "extern C" to use it with CPP.Gabriel Gritsch2014-02-21
| |
| * Integrate changes made by Serge Zaitsev.Gabriel Gritsch2014-02-21
| |
| * Changes for SIZE_MAXGabriel Gritsch2014-02-16
| |
| * - 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-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.
* | edited readme about what's inside the repo. closes issue #19Serge A. Zaitsev2014-02-21
| |
* | added way to specify json string length, added test for non-strict modeSerge A. Zaitsev2014-02-21
| |
* | added way to estimate number of tokens before parsingSerge A. Zaitsev2014-02-20
|/
* a proper fix for signed comparisonSerge A. Zaitsev2014-02-09
|
* added cast size_t to int to avoid warnings, removed string.h header since it ↵Serge A. Zaitsev2014-02-09
| | | | was merged by accident
* fixed jsmntype_t definitionSerge A. Zaitsev2014-01-27
|
* added link to the web pageSerge A. Zaitsev2014-01-27
|
* Merged in frnknstn/jsmn/markdown (pull request #5)Serge Zaitsev2014-01-27
|\ | | | | | | rename README so markdown renders in source control
| * rename README so markdown renders in source controlPeter Finlayson2013-12-23
| | | | | | | | The readme file is in markdown, but most source control systems and repos (including bitbucket) expect a markdown readme to be called README.md
* | Merged in frnknstn/jsmn/clean (pull request #4)Serge Zaitsev2014-01-27
|\ \ | | | | | | | | | delete jsmn_test.exe when doing make clean
| * | delete jsmn_test.exe when doing make cleanPeter Finlayson2013-12-23
| |/ | | | | | | When building the jsmn test suite on Windows via mingw, the output executable is called "jsmn_test.exe" instead of just "jsmn_test".
* | fixed indentation and comments style after mergeSerge A. Zaitsev2014-01-27
| |
* | Removes the incorrect counting of tokensdel65972013-07-19
|\ \
| * | Added a method for jsmn_estimate_tokens(const char *json);del65972013-07-17
| |/
* / Adds checking to unicode characters that are \uXXXX where X is a hexidecimal ↵del65972013-07-19
|/ | | | | | digit Adds new tests for unicode character coverage
* fixed: invalid object/arrays were passed successfully in tree mode; added ↵Serge A. Zaitsev2012-10-22
| | | | tests for this case
* fixed typoSerge A. Zaitsev2012-10-01
|
* fixed tests: missing jsmn_init() before parsing; added tests for empty ↵Serge A. Zaitsev2012-10-01
| | | | arrays/objects
* fixed strict mode: space symbols are allowed after primitives; added some ↵Serge A. Zaitsev2012-09-26
| | | | new tests
* added optional parent token pointer support. Increases parsing speedSerge A. Zaitsev2012-09-26
|
* removed unused variableSerge A. Zaitsev2012-09-23
|
* tokens array items are now being initialized during allocation, removed ↵Serge A. Zaitsev2012-09-23
| | | | redundant code that significantly slowed down the parser
* changed return value to jsmnerr_t, fixed warning about signed/unsigned valuesSerge A. Zaitsev2012-09-03
|
* fix: error is returned if brackets are unmatchedSerge A. Zaitsev2012-02-02
|
* fixed: superior node size is now an index, not a pointer (safe to realloc)Serge A. Zaitsev2012-02-02
|
* added reading with small number of tokens test, fixed NOMEM issue #2Serge A. Zaitsev2012-02-02
|
* added test for partial array readingSerge A. Zaitsev2012-02-02
|
* fixed typo, added JSMN_STRICT modeSerge A. Zaitsev2012-02-01
|
* added one more test case for partial string parserSerge A. Zaitsev2012-02-01
|
* tested partial parser for strings, added primitive string parser test, fixed ↵Serge A. Zaitsev2012-02-01
| | | | token allocation
* added tests for primitive types, primitive types now can be stored outside ↵Serge A. Zaitsev2012-02-01
| | | | the objects without braces
* 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
* switched to C unit-tests instead of bashSerge A. Zaitsev2012-02-01
|
* renamed: get_token to alloc_tokenSerge A. Zaitsev2012-02-01
|