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

Function xmlValidateAttributeValue

ThirdParty/libxml2/vtklibxml2/valid.c:3656–3659  ·  view source on GitHub ↗

* xmlValidateAttributeValue: * @type: an attribute type * @value: an attribute value * * DEPRECATED: Internal function, don't use. * * Validate that the given attribute value match the proper production * * [ VC: ID ] * Values of type ID must match the Name production.... * * [ VC: IDREF ] * Values of type IDREF must match the Name production, and values * of type IDREFS must match

Source from the content-addressed store, hash-verified

3654 * returns 1 if valid or 0 otherwise
3655 */
3656int
3657xmlValidateAttributeValue(xmlAttributeType type, const xmlChar *value) {
3658 return(xmlValidateAttributeValueInternal(NULL, type, value));
3659}
3660
3661/**
3662 * xmlValidateAttributeValue2:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected