| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 1.91

 

xml_first_child

#include "sflxml.h"
XML_ITEM *
xml_first_child (XML_ITEM *item)

Synopsis

Returns the first child node of the specified item, or NULL if there are none.

Source Code - (sflxml.c)

{
    ASSERT (item);

    if (!list_empty (&item-> children))
        return item-> children. next;
    else
        return NULL;
}

| << | < | > | >> iMatix Copyright © 1996-98 iMatix