| 213 | /* ── JSON helpers ─────────────────────────────────────────────────── */ |
| 214 | |
| 215 | static const char *ha_obj_str(yyjson_val *obj, const char *key) { |
| 216 | yyjson_val *v = obj ? yyjson_obj_get(obj, key) : NULL; |
| 217 | return (v && yyjson_is_str(v)) ? yyjson_get_str(v) : NULL; |
| 218 | } |
| 219 | |
| 220 | static bool ha_is_utf8_continuation(unsigned char ch) { |
| 221 | return (ch & 0xc0U) == 0x80U; |
no outgoing calls
no test coverage detected