|
| iMatix home page | << | < | > | >> |
SFLVersion 2.10 |
#include "sflxml.h" XML_ATTR * xml_next_attr (XML_ATTR *attr)
Returns the next attribute following the specified attribute, or NULL if there are none.
{
ASSERT (attr);
if ((LIST *) attr-> next != & attr-> parent-> attrs)
return attr-> next;
else
return NULL;
}
| | << | < | > | >> |
|