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

Function xmlCopyChar

ThirdParty/libxml2/vtklibxml2/parserInternals.c:953–962  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

951 */
952
953int
954xmlCopyChar(int len ATTRIBUTE_UNUSED, xmlChar *out, int val) {
955 if ((out == NULL) || (val < 0)) return(0);
956 /* the len parameter is ignored */
957 if (val >= 0x80) {
958 return(xmlCopyCharMultiByte (out, val));
959 }
960 *out = val;
961 return 1;
962}
963
964/************************************************************************
965 * *

Callers

nothing calls this directly

Calls 1

xmlCopyCharMultiByteFunction · 0.85

Tested by

no test coverage detected