| 383 | } |
| 384 | |
| 385 | const char * hb_value_get_string(const hb_value_t *value) |
| 386 | { |
| 387 | if (hb_value_type(value) != HB_VALUE_TYPE_STRING) return NULL; |
| 388 | return json_string_value(value); |
| 389 | } |
| 390 | |
| 391 | json_int_t hb_value_get_int(const hb_value_t *value) |
| 392 | { |