summaryrefslogtreecommitdiff
path: root/json_object.c
Commit message (Expand)AuthorAgeFilesLines
* Issue#114: check for the presence of isnan and isinf, and provide compat macr...Eric Haszlakiewicz2014-03-021-0/+1
* Avoid potential overflow in json_object_get_doubleKeith Derrick2013-10-011-1/+32
* Issue #59: change the floating point output format to %.17g so values with mo...Eric Haszlakiewicz2013-09-111-1/+1
* Use sizeof instead of hard coded values when calling snprintf.Eric Haszlakiewicz2013-09-111-4/+4
* Added a json_object_new_double_s() convenience function to allow an exact str...Eric Haszlakiewicz2013-09-111-5/+30
* Merge pull request #96 from rouault/remove_strdnupEric Haszlakiewicz2013-09-081-4/+0
|\
| * Remove redefinition of strndup() which is no longer used in the codebaseEven Rouault2013-08-121-4/+0
* | fixing problem that isinf(-Inf) can be 1 or -1Taneli Mielikainen2013-08-041-4/+5
|/
* Merge pull request #89 from ayanes/masterEric Haszlakiewicz2013-06-181-1/+13
|\
| * Fixes for Infinity and NaNAdrian Yanes2013-06-121-1/+13
* | snprintf definition is needed here, tooAnatol Belski2013-06-041-0/+7
|/
* Merge branch 'remicollet-issue-float'Eric Haszlakiewicz2013-02-261-1/+22
|\
| * probably worth an option for thisRemi Collet2012-12-131-1/+1
| * Save space, drop unuseful trailing zeroesRemi Collet2012-12-131-1/+13
| * Simple fix to double encodeRemi Collet2012-12-131-1/+10
* | add json_object_object_lengthGreg Hazel2013-01-111-0/+5
* | escape '\f' in json_escape_strAbioy2012-12-241-0/+2
* | Fix issue #53 - ensure explicit length string are still NUL terminated, and f...Eric Haszlakiewicz2012-12-091-1/+2
|/
* Reformat json_object_object_get() and json_object_object_get_ex().Eric Haszlakiewicz2012-10-181-13/+14
* Fix json_object_object_get() so it returns NULL if the incoming json_object i...Eric Haszlakiewicz2012-10-181-1/+4
* Change json_object_put to return 1 if the object passed was actually freed. (...Eric Haszlakiewicz2012-10-181-2/+4
* Add a json_set_serializer() function to allow the string output of a json_obj...Eric Haszlakiewicz2012-09-021-4/+68
* Rewrite json_object_object_add to replace just the value if the key already e...Eric Haszlakiewicz2012-07-241-2/+14
* Missing explicit casts from void* to specific pointers required. Added #defin...Mateusz Loskot2012-05-221-1/+1
* Replaced #if HAVE_X with #ifdef HAVE_X as the former test is troublemaker wit...Mateusz Loskot2012-05-211-1/+8
* Change the format used for sprintbuf (but not scanf) to use %f instead of %lf...Eric Haszlakiewicz2012-04-291-1/+1
* Add a json_object_to_json_string_ext() function to allow the formatting of ou...Eric Haszlakiewicz2012-04-281-44/+120
* Since we already use a local json_bool type, replace any stdbool.h usage withEric Haszlakiewicz2012-04-241-1/+0
* Add NULL-safe get object methodKeith Derrick2012-04-121-2/+21
* Adjust json_object_is_type and json_object_get_type so they return json_type_...Eric Haszlakiewicz2012-03-311-0/+4
* Rename boolean type to json_boolKeith Derrick2012-03-261-2/+2
* Some updates to make the code compatible with VC 9 (2008)John Arbash Meinel2012-02-011-2/+5
* Added capitalized charaters to json_hex_charsFederico Culloca2011-10-301-1/+1
* Add new json_object_array_sort functionFrederik Deweerdt2011-10-071-0/+5
* handle NULL passed to json_objct_object_getJehiah Czebotar2011-05-261-0/+1
* Add a json_type_to_name() function which returns a string that describes the ...Eric Haszlakiewicz2011-05-031-16/+3
* Fix a bug in json_object_get_int() where calling it on a string type object w...Eric Haszlakiewicz2011-05-031-1/+1
* update json_object_new_string_len, json_escape_str (internal). Writer handles...Jehiah Czebotar2011-01-141-15/+26
* Simplify things by storing integer values only as int64_t's internally, andehaszla2010-12-071-17/+4
* * Add int64 support. Two new functions json_object_net_int64 andMichael Clark2010-10-061-6/+66
* Disable REFCOUNT_DEBUG by default in json_object.cChristopher Watford2009-06-301-1/+1
* Fix json_object_get_boolean to return false for empty stringMichael Clark2009-04-271-1/+1
* * Don't use this as a variable, so we can compile with a C++ compilerMichael Clark2009-02-251-1/+3
* * Don't use this as a variable, so we can compile with a C++ compilerMichael Clark2009-02-251-143/+143
* * Null pointer dereference fix. Fix json_object_get_boolean strlen testMichael Clark2009-02-251-2/+1
* * Fixed warning reported by adding -Wstrict-prototypesMichael Clark2009-02-251-2/+2
* fix typo in json_object.hMichael Clark2009-01-101-1/+1
* Add const correctness to public interfacesMichael Clark2009-01-061-10/+10
* Patch allows for json-c compile with -Werror and not fail due toMichael Clark2007-12-071-4/+4
* * Fix bug with use of capital E in numbers with exponentsMichael Clark2007-12-071-1/+2