* xmlSchemaValPredefTypeNode: * @type: the predefined type * @value: the value to check * @val: the return computed value * @node: the node containing the value * * Check that a value conforms to the lexical space of the predefined type. * if true a value is computed and returned in @val. * * Returns 0 if this validates, a positive error code number otherwise * and -1 in case o
| 3612 | * and -1 in case of internal or API error. |
| 3613 | */ |
| 3614 | int |
| 3615 | xmlSchemaValPredefTypeNode(xmlSchemaTypePtr type, const xmlChar *value, |
| 3616 | xmlSchemaValPtr *val, xmlNodePtr node) { |
| 3617 | return(xmlSchemaValAtomicType(type, value, val, node, 0, |
| 3618 | XML_SCHEMA_WHITESPACE_UNKNOWN, 1, 1, 0)); |
| 3619 | } |
| 3620 | |
| 3621 | /** |
| 3622 | * xmlSchemaValPredefTypeNodeNoNorm: |
no test coverage detected