1
0
Fork 0
mirror of https://github.com/Ryujinx/GtkSharp.git synced 2025-03-25 06:25:18 +00:00
GtkSharp/glue/slist.c

22 lines
310 B
C
Raw Normal View History

/* slist.c : Glue to access fields in GSList.
*
* Author: Rachel Hestilow <hestilow@ximian.com>
*
* <c> 2002 Rachel Hestilow, Mike Kestner
*/
#include <glib/gslist.h>
gpointer
gtksharp_slist_get_data (GSList *l)
{
return l->data;
}
GSList*
gtksharp_slist_get_next (GSList *l)
{
return l->next;
}