aboutsummaryrefslogtreecommitdiff
path: root/src/load.c
AgeCommit message (Expand)AuthorFilesLines
2017-11-14Remove extra reference actions in parsers.Corey Farrell1-6/+2
2017-10-03Use last byte of error text as numeric error codePhilipp Stephani1-33/+35
2017-01-27Implement json_dumpfd() and json_loadfd()Nathaniel McCallum1-1/+44
2016-10-24Merge pull request #311 from robertmu/masterPetri Lehtinen1-1/+1
2016-10-07Fix passing redundant argument to error_set()Robert Mu1-1/+1
2016-10-01Allow parsing of buffers larger than 2GB on most 64 bit arch.Luke Carmichael1-1/+1
2016-09-18Update copyrights for 2016Petri Lehtinen1-1/+1
2016-05-03Fix for issue #282Dmitry Janushkevich1-0/+10
2015-10-12changed code from while to do/whileDenis Ahrens1-10/+10
2014-12-18Honor JSON_DECODE_INT_AS_REAL at lexical stagePetri Lehtinen1-16/+11
2014-11-28Warnings - use size_t where appropriate to prevent warning when compilation i...Shawn Harris1-3/+3
2014-04-23Rename variables to work aroung a GCC bug on SolarisPetri Lehtinen1-7/+7
2014-01-28Update copyrights for 2014Petri Lehtinen1-1/+1
2013-09-30Add JSON_ALLOW_NUL decoding flag for enabling NUL byte supportPetri Lehtinen1-1/+11
2013-09-30Fix NUL byte check for object keysPetri Lehtinen1-1/+1
2013-09-30load.c: Change an error messagePetri Lehtinen1-1/+1
2013-09-27Support \u0000 - add size_t string lengths to API, load and dump \u000, etc.Chip Salzenberg1-31/+49
2013-07-23Update copyrights for 2013Petri Lehtinen1-1/+1
2013-06-26BUGFIX: Compilation error with -DNDEBUG defined.Joakim Soderberg1-1/+10
2013-06-11Using jsonp_strtod instead of casting to double to catch double overflowJason Choy1-1/+6
2013-06-11Renamed flag to JSON_DECODE_INT_AS_REAL and added documentationJason Choy1-1/+1
2013-06-09Implemented a decode option to only decode numbers to reals and never integersJason Choy1-1/+5
2013-04-02Merge pull request #108 from Zillode/1edff47af38a2335f88300ee6dc437118f5a20ffPetri Lehtinen1-0/+3
2013-03-14Do not define _GNU_SOURCE is already definedLode Hoste1-0/+3
2013-03-07Add CMake build system.Paul Harris1-0/+2
2012-12-28Fix // -> /* */Petri Lehtinen1-1/+1
2012-12-10fixed l_isxdigit() macroAttie Grande1-1/+1
2012-05-01Fix build warnings under MinGWRogerz Zhang1-1/+1
2012-04-29Support building on WindowsPetri Lehtinen1-1/+8
2012-04-18Merge branch '2.3'Petri Lehtinen1-5/+5
2012-04-18load: Change buffer_pos to be a size_tJanne Kulmala1-1/+1
2012-04-18load: Avoid unexpected behaviour in macro expansionJanne Kulmala1-4/+4
2012-03-26Document and tweak json_load_callback()Petri Lehtinen1-2/+2
2012-03-22Add json_load_callback()Rogerz Zhang1-0/+55
2012-03-20Update copyright notices for 2012Petri Lehtinen1-1/+1
2012-01-23Write number of bytes read to error position on successful decodePetri Lehtinen1-1/+6
2011-11-14Merge branch '2.2'Petri Lehtinen1-5/+28
2011-11-14JSON_DECODE_ANYAndrea Marchesini1-3/+5
2011-11-14json_load* return NULL if the first argument is NULLAndrea Marchesini1-5/+28
2011-10-04json_load_file: Open the input file in rb modePetri Lehtinen1-1/+1
2011-10-03Make identifier decoding work under all localesPetri Lehtinen1-15/+22
2011-10-02Make real number encoding and decoding work under all localesPetri Lehtinen1-6/+1
2011-09-20scope error. result points to a out-of-score variable.Andrea Marchesini1-1/+1
2011-05-29Add JSON_DISABLE_EOF_CHECK decoding flagPetri Lehtinen1-5/+7
2011-05-29Reduce code duplication in the decoderPetri Lehtinen1-34/+14
2011-05-24Clear errno before calling strtod()Petri Lehtinen1-0/+1
2011-05-15Add JSON_REJECT_DUPLICATES decoding flagPetri Lehtinen1-18/+21
2011-04-10Add json_loadb() for decoding possibly non null-terminated stringsPetri Lehtinen1-0/+52
2011-03-21ANSI C requires struct initializers to be constant expressionsPetri Lehtinen1-1/+4
2011-03-20Enhance portability of va_copy()Petri Lehtinen1-1/+0