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

Function ghb_dict_get_bool

gtk/src/values.c:186–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184}
185
186gboolean
187ghb_dict_get_bool(const GhbValue *dict, const gchar *key)
188{
189 const GhbValue* value;
190 value = ghb_dict_get_value(dict, key);
191 if (value == NULL) return FALSE;
192 return ghb_value_get_bool(value);
193}
194
195gint64
196ghb_dict_get_int(const GhbValue *dict, const gchar *key)

Calls 1

ghb_dict_get_valueFunction · 0.85

Tested by

no test coverage detected