Home
last modified time | relevance | path

Searched refs:CJSON_PUBLIC (Results 1 – 2 of 2) sorted by relevance

/petsc/src/mat/tests/
H A DcJSON.h62 #define CJSON_PUBLIC(type) type CJSON_STDCALL macro
64 #define CJSON_PUBLIC(type) __declspec(dllexport) type CJSON_STDCALL
66 #define CJSON_PUBLIC(type) __declspec(dllimport) type CJSON_STDCALL
73 #define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type
75 #define CJSON_PUBLIC(type) type
137 CJSON_PUBLIC(const char *) cJSON_Version(void);
140 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks *hooks);
144 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
145 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
148 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b…
[all …]
H A DcJSON.c94 CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) in cJSON_GetErrorPtr()
99 CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON *const item) in cJSON_GetStringValue()
106 CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON *const item) in cJSON_GetNumberValue()
118 CJSON_PUBLIC(const char *) cJSON_Version(void) in cJSON_Version()
186 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks *hooks) in cJSON_InitHooks()
217 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete()
322 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) in cJSON_SetNumberHelper()
335 CJSON_PUBLIC(char *) cJSON_SetValuestring(cJSON *object, const char *valuestring) in cJSON_SetValuestring()
865 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… in cJSON_ParseWithOpts()
878 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char… in cJSON_ParseWithLengthOpts()
[all …]