* xmlHasNsProp: * @node: the node * @name: the attribute name * @nameSpace: the URI of the namespace * * Search for an attribute associated to a node * This attribute has to be anchored in the namespace specified. * This does the entity substitution. * This function looks in DTD attribute declaration for #FIXED or * default declaration values. * Note that a namespace of NULL indicates
| 6738 | * making this function unreliable. |
| 6739 | */ |
| 6740 | xmlAttrPtr |
| 6741 | xmlHasNsProp(const xmlNode *node, const xmlChar *name, const xmlChar *nameSpace) { |
| 6742 | |
| 6743 | return(xmlGetPropNodeInternal(node, name, nameSpace, 1)); |
| 6744 | } |
| 6745 | |
| 6746 | /** |
| 6747 | * xmlNodeGetAttrValue: |
no test coverage detected