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

 

xml_next_sibling

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

Synopsis

Returns the next sibling of the specified item, or NULL if there if are none.

Source Code - (sflxml.c)

{
    ASSERT (item);

    if ((LIST *) item-> next != & item-> parent-> children)
        return item-> next;
    else
        return NULL;
}

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