| 127 | } |
| 128 | |
| 129 | GhbValue* |
| 130 | ghb_boolean_value(gboolean bval) |
| 131 | { |
| 132 | // Jansson boolean is singleton, no need for local static |
| 133 | GhbValue *gval = json_boolean(bval); |
| 134 | json_decref(gval); |
| 135 | return gval; |
| 136 | } |
| 137 | |
| 138 | void |
| 139 | ghb_string_value_set(GhbValue *gval, const gchar *str) |
no outgoing calls
no test coverage detected