* 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
| 3654 | * returns 1 if valid or 0 otherwise |
| 3655 | */ |
| 3656 | int |
| 3657 | xmlValidateAttributeValue(xmlAttributeType type, const xmlChar *value) { |
| 3658 | return(xmlValidateAttributeValueInternal(NULL, type, value)); |
| 3659 | } |
| 3660 | |
| 3661 | /** |
| 3662 | * xmlValidateAttributeValue2: |
nothing calls this directly
no test coverage detected