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

Function xmlStrchr

ThirdParty/libxml2/vtklibxml2/xmlstring.c:334–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332 */
333
334const xmlChar *
335xmlStrchr(const xmlChar *str, xmlChar val) {
336 if (str == NULL) return(NULL);
337 while (*str != 0) { /* non input consuming */
338 if (*str == val) return((xmlChar *) str);
339 str++;
340 }
341 return(NULL);
342}
343
344/**
345 * xmlStrstr:

Callers 15

xmlconfTestItemFunction · 0.85
xmlXPathTryStreamCompileFunction · 0.85
xmlXPtrSearchStringFunction · 0.85
xmlFACompareAtomsFunction · 0.85
xmlParsePITargetFunction · 0.85
xmlParseNotationDeclFunction · 0.85
xmlParseEntityDeclFunction · 0.85
xmlBufDumpEntityContentFunction · 0.85
xmlXIncludeBaseFixupFunction · 0.85
xmlShellGrepFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected