#ifndef _wbnlist_h_
#define _wbnlist_h_

#include "wb_include.h"

typedef struct _wnl_struct WNList;
typedef struct _wnla_struct WNLatom;

#ifdef __STDC__

extern WNList *WNLcons_atom(WNLatom *, WNList *);
extern WNList *WNLappend_atom(WNLatom *, WNList *);
extern WNLatom *WNLatom_create(int, int, char *, char *);
extern WidgetNode *WNLrealize_tree(WNList *, int *);
extern int WNLhas_a_parent(WNLatom *);

#else

extern WNList *WNLcons_atom();
extern WNList *WNLappend_atom();
extern WNLatom *WNLatom_create();
extern WidgetNode *WNLrealize_tree();
extern int WNLhas_a_parent();

#endif

/***************************************************************************/
#endif      /* end of ifndef _wbnlist_h_  :: DO NOT WRITE BELOW THIS LINE. */
