| 211 | } |
| 212 | |
| 213 | const gchar* |
| 214 | ghb_dict_get_string(const GhbValue *dict, const gchar *key) |
| 215 | { |
| 216 | const GhbValue* value; |
| 217 | value = ghb_dict_get_value(dict, key); |
| 218 | return ghb_value_get_string(value); |
| 219 | } |
| 220 | |
| 221 | gchar* |
| 222 | ghb_dict_get_string_xform(const GhbValue *dict, const gchar *key) |
no test coverage detected