MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / ghb_dict_get_string_xform

Function ghb_dict_get_string_xform

gtk/src/values.c:221–228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219}
220
221gchar*
222ghb_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
230void
231ghb_dict_copy(GhbValue *dst, const GhbValue *src)

Calls 1

ghb_dict_get_valueFunction · 0.85

Tested by

no test coverage detected