>>>>> "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