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

Function xmlPatScanQName

ThirdParty/libxml2/vtklibxml2/pattern.c:877–889  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

875 */
876
877static xmlChar *
878xmlPatScanQName(xmlPatParserContextPtr ctxt, xmlChar **prefix) {
879 xmlChar *ret = NULL;
880
881 *prefix = NULL;
882 ret = xmlPatScanNCName(ctxt);
883 if (CUR == ':') {
884 *prefix = ret;
885 NEXT;
886 ret = xmlPatScanNCName(ctxt);
887 }
888 return(ret);
889}
890#endif
891
892/**

Callers

nothing calls this directly

Calls 1

xmlPatScanNCNameFunction · 0.85

Tested by

no test coverage detected