| 2736 | |
| 2737 | |
| 2738 | CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item) |
| 2739 | { |
| 2740 | if (item == NULL) |
| 2741 | { |
| 2742 | return false; |
| 2743 | } |
| 2744 | |
| 2745 | return (item->type & (cJSON_True | cJSON_False)) != 0; |
| 2746 | } |
| 2747 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item) |
| 2748 | { |
| 2749 | if (item == NULL) |
nothing calls this directly
no outgoing calls
no test coverage detected