MCPcopy Create free account
hub / github.com/Kitware/VTK / htmlGetEndPriority

Function htmlGetEndPriority

ThirdParty/libxml2/vtklibxml2/HTMLparser.c:1352–1361  ·  view source on GitHub ↗

* htmlGetEndPriority: * @name: The name of the element to look up the priority for. * * Return value: The "endtag" priority. **/

Source from the content-addressed store, hash-verified

1350 * Return value: The "endtag" priority.
1351 **/
1352static int
1353htmlGetEndPriority (const xmlChar *name) {
1354 int i = 0;
1355
1356 while ((htmlEndPriority[i].name != NULL) &&
1357 (!xmlStrEqual((const xmlChar *)htmlEndPriority[i].name, name)))
1358 i++;
1359
1360 return(htmlEndPriority[i].priority);
1361}
1362
1363
1364static int

Callers 1

htmlAutoCloseOnCloseFunction · 0.85

Calls 1

xmlStrEqualFunction · 0.85

Tested by

no test coverage detected