Browse Source

Added capitalized charaters to json_hex_chars

tags/json-c-0.10-20120530
Federico Culloca 14 years ago
parent
commit
7ec34c9b39
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      json_object.c

+ 1
- 1
json_object.c View File

@@ -32,7 +32,7 @@
/* #define REFCOUNT_DEBUG 1 */ /* #define REFCOUNT_DEBUG 1 */


const char *json_number_chars = "0123456789.+-eE"; const char *json_number_chars = "0123456789.+-eE";
const char *json_hex_chars = "0123456789abcdef";
const char *json_hex_chars = "0123456789abcdefABCDEF";


static void json_object_generic_delete(struct json_object* jso); static void json_object_generic_delete(struct json_object* jso);
static struct json_object* json_object_new(enum json_type o_type); static struct json_object* json_object_new(enum json_type o_type);


Loading…
Cancel
Save