mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
Merge 1479637976000fa9bf088f2993e10d3e5ef19b40 into cb8693b058ba302f4829ec6d03f609ac6f848546
This commit is contained in:
commit
e7dea225c7
5
cJSON.c
5
cJSON.c
@ -91,6 +91,11 @@ typedef struct {
|
|||||||
} error;
|
} error;
|
||||||
static error global_error = { NULL, 0 };
|
static error global_error = { NULL, 0 };
|
||||||
|
|
||||||
|
CJSON_PUBLIC(size_t) cJSON_GetErrorPos(void)
|
||||||
|
{
|
||||||
|
return global_error.position;
|
||||||
|
}
|
||||||
|
|
||||||
CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void)
|
CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void)
|
||||||
{
|
{
|
||||||
return (const char*) (global_error.json + global_error.position);
|
return (const char*) (global_error.json + global_error.position);
|
||||||
|
1
cJSON.h
1
cJSON.h
@ -174,6 +174,7 @@ CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const objec
|
|||||||
CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
|
CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
|
||||||
/* For analysing failed parses. This returns a pointer to the parse error. You'll probably need to look a few chars back to make sense of it. Defined when cJSON_Parse() returns 0. 0 when cJSON_Parse() succeeds. */
|
/* For analysing failed parses. This returns a pointer to the parse error. You'll probably need to look a few chars back to make sense of it. Defined when cJSON_Parse() returns 0. 0 when cJSON_Parse() succeeds. */
|
||||||
CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void);
|
CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void);
|
||||||
|
CJSON_PUBLIC(size_t) cJSON_GetErrorPos(void);
|
||||||
|
|
||||||
/* Check item type and return its value */
|
/* Check item type and return its value */
|
||||||
CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item);
|
CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user