| 219 | } |
| 220 | |
| 221 | gchar* |
| 222 | ghb_dict_get_string_xform(const GhbValue *dict, const gchar *key) |
| 223 | { |
| 224 | const GhbValue* value; |
| 225 | value = ghb_dict_get_value(dict, key); |
| 226 | if (value == NULL) return g_strdup(""); |
| 227 | return ghb_value_get_string_xform(value); |
| 228 | } |
| 229 | |
| 230 | void |
| 231 | ghb_dict_copy(GhbValue *dst, const GhbValue *src) |
no test coverage detected