Hi,

Neil Zanella <[EMAIL PROTECTED]> writes:

> I was just wondering whether
>
> g_list_next(foo)
>
> and
>
> foo->next
>
> are really the same or not.

Not exactly the same. Why don't you have a look at the source? There
it is in glist.h:

 #define g_list_next(list) ((list) ? (((GList *)(list))->next) : NULL)


Sven
_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to