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

Function xml_get_data

gtk/src/chapters.c:282–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282static char *
283xml_get_data (xmlDocPtr doc, xmlNodePtr node, const char *name)
284{
285 char *str = NULL;
286
287 if (node != NULL && (node = xml_get_node(node, name)))
288 {
289 str = (char *) xmlNodeListGetString(doc, node->xmlChildrenNode, 1);
290 }
291 return str;
292}
293
294static gboolean
295xml_get_bool (xmlDocPtr doc, xmlNodePtr node,

Callers 2

xml_get_boolFunction · 0.85
chapter_list_import_xmlFunction · 0.85

Calls 1

xml_get_nodeFunction · 0.85

Tested by

no test coverage detected