mirror of
https://github.com/json-c/json-c.git
synced 2026-03-26 08:29:06 +08:00
* Fix bug with use of capital E in numbers with exponents
Mateusz Loskot, mateusz at loskot dot net * Add stddef.h include git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@19 327403b1-1117-474d-bef2-5cb71233fd97
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "debug.h"
|
||||
@@ -29,7 +30,7 @@
|
||||
|
||||
#define REFCOUNT_DEBUG 1
|
||||
|
||||
char *json_number_chars = "0123456789.+-e";
|
||||
char *json_number_chars = "0123456789.+-eE";
|
||||
char *json_hex_chars = "0123456789abcdef";
|
||||
|
||||
#ifdef REFCOUNT_DEBUG
|
||||
|
||||
Reference in New Issue
Block a user