Re: GList



>>>>> "J" == Jan Sochman <jena@artax.karlin.mff.cuni.cz> writes:

 J> Hi, where I can find declaration of GList. I couldn't find...

In glib.h:

typedef struct _GList           GList;
struct _GList
{
  gpointer data;
  GList *next;
  GList *prev;
};
 
/mailund



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]