You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Eric Haszlakiewicz 4d1e0b4409 Issue #371: fix parsing of "-Infinity" (although in a somewhat different location than PR#372 used), and add a case to test_parse to check for this. 7 years ago
autoconf-archive Fix a few places that needed adjustment for the size_t changes, including updating the range checks to use a calculated SIZE_T_MAX. 9 years ago
tests Issue #371: fix parsing of "-Infinity" (although in a somewhat different location than PR#372 used), and add a case to test_parse to check for this. 7 years ago
.editorconfig Adding a file for EditorConfig 9 years ago
.gitignore ignore more autoconf goo 7 years ago
.travis.yml build,travis: drop `-enable-strerror-override` argument (no longer exists) 8 years ago
AUTHORS Add Jehiah and myself to the list of authors. 14 years ago
Android.configure.mk Issue #369: note some useful settings when building for Android. 8 years ago
CMakeLists.txt Use cmake to create the json-c.pc file, as suggested by PR#362. 8 years ago
COPYING Add my copyright. 13 years ago
ChangeLog Copy over note about the 0.12.1 release to the master branch. 9 years ago
Doxyfile Mention that we're aiming to follow RFC 7159 now. 9 years ago
INSTALL Issue #308: improve the build instructions in README.md to include the exact commands to run for installing prerequisites, as mentioned earlier on Issue #308. 8 years ago
Makefile.am add/remove missing distribution files 7 years ago
NEWS Improving README 9 years ago
README Improving README 9 years ago
README.html Remove out of date win32 build information, and mention the need to use cmake there. 8 years ago
README.md Add a --enable-threading configure option, and only use the (slower) __sync_add_and_fetch()/__sync_sub_and_fetch() function when it is specified. 8 years ago
RELEASE_CHECKLIST.txt Use cmake to create the json-c.pc file, as suggested by PR#362. 8 years ago
STYLE.txt Add a brief style guide. Address Issue #257. 9 years ago
appveyor.yml The new cmake-generated VS builds now generate a dynamic .dll instead of a .lib 8 years ago
arraylist.c Issue #351: don't redefine SIZE_T_MAX if it's already defined. 8 years ago
arraylist.h Fix a few places that needed adjustment for the size_t changes, including updating the range checks to use a calculated SIZE_T_MAX. 9 years ago
autogen.sh Use AC_CONFIG_MACRO_DIRS to specify path to the ax macros instead of passing -I to autoreconf in autogen.sh. 8 years ago
bits.h Move the json_min() and json_max() macros to json_util.h and mark everything else in bits.h deprecated. 11 years ago
config.h.win32 Issue #173, follow up to using strtoll to allow this to work on older Windows environments: Use cmake to generate config.h from config.h.win32, including checking for strtoll with cmake, or fall back to _strtoi64 for older MSVC's. 8 years ago
configure.ac Add long long 64-bit check 8 years ago
debug.c Remove trailing whitespace 11 years ago
debug.h Eliminate the deprecated mc_abort() function and MC_ABORT macro. 11 years ago
json-c-uninstalled.pc.in Re-add the "json" pkg-config file as a compatibility shim. 13 years ago
json-c.pc.in Very minor changes not related to C source code 9 years ago
json.h json_pointer: add first revision 9 years ago
json_c_version.c Add a json_c_version.h header (included from json.h), and several macros and functions for retrieving the json-c version at compile-time and run-time. 12 years ago
json_c_version.h Bump versions up to 0.12.99 since a 0.12 release was just created. 11 years ago
json_config.h.in Include json_inttypes.h in json_object.h since we use types like int32_t in the API and some systems need that header to compile. 13 years ago
json_config.h.win32 Updated config for vs2010/winsdk71 as well as vs2013 10 years ago
json_inttypes.h Define macros from inttypes.h when not available 10 years ago
json_object.c Fix double to int cast overflow in json_object_get_int64. 8 years ago
json_object.h Issue #370: work around Clang-on-windows oddities by rearranging ifdefs. 8 years ago
json_object_iterator.c Issue #236: Add -Wcast-qual and fix casts to retain constness. 9 years ago
json_object_iterator.h Issue #76: use old style comment to allow json_object_iterator.h to build in ansi mode. 12 years ago
json_object_private.h Make _set_last_err() non-static so it can be used outside of json_util.c 8 years ago
json_pointer.c build: make `strerror()` override-able 8 years ago
json_pointer.h json_pointer: add json_pointer_getf/setf() function variants 8 years ago
json_tokener.c Issue #371: fix parsing of "-Infinity" (although in a somewhat different location than PR#372 used), and add a case to test_parse to check for this. 7 years ago
json_tokener.h Fix library build with Visual Studio 8 years ago
json_util.c On VS 2013 and newer, actually use strtoll instead of redefining it to _strtoi64. 7 years ago
json_util.h Issue #161: add a json_object_to_fd() function. 8 years ago
json_visit.c Add a json_c_visit() function to provide a way to iterate over a tree of json-c objects. 9 years ago
json_visit.h Add a json_c_visit() function to provide a way to iterate over a tree of json-c objects. 9 years ago
libjson.c Remove trailing whitespace 11 years ago
linkhash.c Issue #359: Don't duplicate lh_get_hash, just omit the "inline" for VS2010. 8 years ago
linkhash.h Issue#353: mark lh_abort as actually deprecated, not just in the docs. 8 years ago
math_compat.h Define INFINITY and NAN when missing 10 years ago
printbuf.c PR#331: for Visual Studio, use a snprintf/vsnprintf wrapper that ensures the string is terminated. 8 years ago
printbuf.h Restore sprintbuf(), add macro for string literals 8 years ago
random_seed.c 1.make it can been compiled with Visual Studio 2010 8 years ago
random_seed.h Patch to address the following issues: 11 years ago
snprintf_compat.h PR#331: for Visual Studio, use a snprintf/vsnprintf wrapper that ensures the string is terminated. 8 years ago
strdup_compat.h strdup_compat.h: re-spin this compat header ; use math_compat.h as template 8 years ago
strerror_override.c PR #336: Fix typo in defining STRERROR_OVERRIDE_IMPL 8 years ago
strerror_override.h strerror_override: re-organize strerror_override.h 8 years ago
strerror_override_private.h PR #336: since we can't use function overriding (due to problems with it on OSX) always include the _json_c_strerror function but only enable it with a flag during tests. 8 years ago
vasprintf_compat.h PR#331: for Visual Studio, use a snprintf/vsnprintf wrapper that ensures the string is terminated. 8 years ago