From: Eric Hawicz Date: Sun, 6 Aug 2023 19:35:04 +0000 (-0400) Subject: Fix issue #823: add back json_number_chars, but only because it's part of the public... X-Git-Tag: json-c-0.17-20230812~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=077661f3d17ae51c7de27888edd303cc32b50328;p=thirdparty%2Fjson-c.git Fix issue #823: add back json_number_chars, but only because it's part of the public API. --- diff --git a/json_object.c b/json_object.c index c3974a05..cc4c1e22 100644 --- a/json_object.c +++ b/json_object.c @@ -53,6 +53,7 @@ #endif #endif +const char *json_number_chars = "0123456789.+-eE"; /* Unused, but part of public API, drop for 1.0 */ const char *json_hex_chars = "0123456789abcdefABCDEF"; static void json_object_generic_delete(struct json_object *jso);