MCPcopy Create free account
hub / github.com/Netis/cloud-probe / cJSON_IsString

Function cJSON_IsString

cpworker/src/cJSON/cJSON.c:2969–2977  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2967}
2968
2969CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)
2970{
2971 if (item == NULL)
2972 {
2973 return false;
2974 }
2975
2976 return (item->type & 0xFF) == cJSON_String;
2977}
2978
2979CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
2980{

Callers 14

parse_capturer_configFunction · 0.85
parse_output_configFunction · 0.85
parse_req_pattern_configFunction · 0.85
parse_task_configFunction · 0.85
parse_control_configFunction · 0.85
parse_config_jsonFunction · 0.85
unix_manager_acceptFunction · 0.85
unix_command_executeFunction · 0.85
decode_patch_operationFunction · 0.85
apply_patchFunction · 0.85
cJSON_GetStringValueFunction · 0.85

Calls

no outgoing calls