|
| iMatix home page | << | < | > | >> |
SFLVersion 2.10 |
#include "sflxml.h" XML_ATTR * xml_first_attr (XML_ITEM *item)
Returns the first attribute of a specified XML item, or NULL if there are none.
{
ASSERT (item);
if (!list_empty (&item-> attrs))
return item-> attrs. next;
else
return NULL;
}
| | << | < | > | >> |
|