| 407 | } |
| 408 | |
| 409 | int hb_value_get_bool(const hb_value_t *value) |
| 410 | { |
| 411 | int result; |
| 412 | hb_value_t *v = hb_value_xform(value, HB_VALUE_TYPE_BOOL); |
| 413 | result = json_is_true(v); |
| 414 | json_decref(v); |
| 415 | return result; |
| 416 | } |
| 417 | |
| 418 | char* |
| 419 | hb_value_get_string_xform(const hb_value_t *value) |