aws-crt-cpp
|
#include <stddef.h>
Go to the source code of this file.
Classes | |
struct | Aws::cJSON |
struct | Aws::cJSON_Hooks |
Namespaces | |
Aws | |
Macros | |
#define | CJSON_VERSION_MAJOR 1 |
#define | CJSON_VERSION_MINOR 7 |
#define | CJSON_VERSION_PATCH 7 |
#define | cJSON_Invalid (0) |
#define | cJSON_False (1 << 0) |
#define | cJSON_True (1 << 1) |
#define | cJSON_NULL (1 << 2) |
#define | cJSON_Number (1 << 3) |
#define | cJSON_String (1 << 4) |
#define | cJSON_Array (1 << 5) |
#define | cJSON_Object (1 << 6) |
#define | cJSON_Raw (1 << 7) /* raw json */ |
#define | cJSON_IsReference 256 |
#define | cJSON_StringIsConst 512 |
#define | CJSON_PUBLIC(type) type |
#define | CJSON_NESTING_LIMIT 1000 |
#define | cJSON_SetIntValue(object, number) ((object) ? (object)->valueint = (object)->valuedouble = (number) : (number)) |
#define | cJSON_SetNumberValue(object, number) ((object != NULL) ? cJSON_SetNumberHelper(object, (double)number) : (number)) |
#define | cJSON_ArrayForEach(element, array) for(element = (array != NULL) ? (array)->child : NULL; element != NULL; element = element->next) |
Typedefs | |
typedef struct Aws::cJSON | Aws::cJSON |
typedef struct Aws::cJSON_Hooks | Aws::cJSON_Hooks |
typedef int | Aws::cJSON_bool |
Functions | |
Aws::CJSON_PUBLIC (const char *) cJSON_Version(void) | |
Aws::CJSON_PUBLIC (void) cJSON_InitHooks(cJSON_Hooks *hooks) | |
Aws::CJSON_PUBLIC (cJSON *) cJSON_Parse(const char *value | |
Aws::CJSON_PUBLIC (char *) cJSON_Print(const cJSON *item) | |
Aws::cJSON_PrintPreallocated (cJSON *item, char *buffer, const int length, const cJSON_bool format) | |
Aws::CJSON_PUBLIC (int) cJSON_GetArraySize(const cJSON *array) | |
Aws::cJSON_InsertItemInArray (cJSON *array, int which, cJSON *newitem) | |
Aws::CJSON_PUBLIC (double) cJSON_SetNumberHelper(cJSON *object | |
Aws::CJSON_PUBLIC (void *) cJSON_malloc(size_t size) | |
Variables | |
size_t | Aws::length = length |
size_t const char ** | Aws::return_parse_end |
int | Aws::prebuffer |
int cJSON_bool | Aws::fmt |
int | Aws::index |
const char *const | Aws::string |
int | Aws::count |
cJSON * | Aws::item = NULL |
int | Aws::which |
cJSON *const cJSON * | Aws::replacement |
int cJSON * | Aws::newitem |
cJSON_bool | Aws::recurse |
const cJSON *const | Aws::b |
const cJSON *const const cJSON_bool | Aws::case_sensitive |
const char *const | Aws::name |
const char *const const cJSON_bool | Aws::boolean |
const char *const const double | Aws::number |
const char *const const char *const | Aws::raw |
#define cJSON_Array (1 << 5) |
#define cJSON_ArrayForEach | ( | element, | |
array | |||
) | for(element = (array != NULL) ? (array)->child : NULL; element != NULL; element = element->next) |
#define cJSON_False (1 << 0) |
#define cJSON_Invalid (0) |
#define cJSON_IsReference 256 |
#define CJSON_NESTING_LIMIT 1000 |
#define cJSON_NULL (1 << 2) |
#define cJSON_Number (1 << 3) |
#define cJSON_Object (1 << 6) |
#define CJSON_PUBLIC | ( | type | ) | type |
#define cJSON_Raw (1 << 7) /* raw json */ |
#define cJSON_SetIntValue | ( | object, | |
number | |||
) | ((object) ? (object)->valueint = (object)->valuedouble = (number) : (number)) |
#define cJSON_SetNumberValue | ( | object, | |
number | |||
) | ((object != NULL) ? cJSON_SetNumberHelper(object, (double)number) : (number)) |
#define cJSON_String (1 << 4) |
#define cJSON_StringIsConst 512 |
#define cJSON_True (1 << 1) |
#define CJSON_VERSION_MAJOR 1 |
#define CJSON_VERSION_MINOR 7 |
#define CJSON_VERSION_PATCH 7 |