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

Function xmlListFront

ThirdParty/libxml2/vtklibxml2/list.c:450–456  ·  view source on GitHub ↗

* xmlListFront: * @l: a list * * Get the first element in the list * * Returns the first element in the list, or NULL */

Source from the content-addressed store, hash-verified

448 * Returns the first element in the list, or NULL
449 */
450xmlLinkPtr
451xmlListFront(xmlListPtr l)
452{
453 if (l == NULL)
454 return(NULL);
455 return (l->sentinel->next);
456}
457
458/**
459 * xmlListEnd:

Callers 15

xmlTextWriterEndDocumentFunction · 0.85
xmlTextWriterEndCommentFunction · 0.85
xmlTextWriterEndElementFunction · 0.85
xmlTextWriterWriteRawLenFunction · 0.85
xmlTextWriterWriteStringFunction · 0.85
xmlTextWriterWriteBase64Function · 0.85
xmlTextWriterWriteBinHexFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected