xmlGetAttr: Get the value of an attribute in an XML node
Description
This is a convenience function that retrieves
the value of a named attribute in an XML node,
taking care of checking for its existence.
It also allows the caller to provide a default
value to use as the return value if the
attribute is not present.
a value to use as the default return if the attribute
is not present in the XML node.
converter
an optional function which if supplied is invoked
with the attribute value and the value returned.
This can be used to convert the string to an arbitrary
value which is useful if it is, for example, a number.
This is only called if the att
Value
If the
attribute is present,
the return value is a string which is the value of the attribute.
Otherwise, the value of default is returned.
Details
This just checks that the attribute list is
non-NULL and that there is an element with
the specified name.