| iMatix home page | << | < | > | >> |
![]() Version 1.91 |
#include "sflxml.h" XML_ITEM * xml_first_child (XML_ITEM *item)
Returns the first child node of the specified item, or NULL if there are none.
{ ASSERT (item); if (!list_empty (&item-> children)) return item-> children. next; else return NULL; }
| << | < | > | >> |
![]() |