1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
30 #include <glib/gmem.h>
34 typedef struct _GList GList;
43 /* Doubly linked lists
45 GList* g_list_alloc (void);
46 void g_list_free (GList *list);
47 void g_list_free_1 (GList *list);
48 #define g_list_free1 g_list_free_1
49 GList* g_list_append (GList *list,
51 GList* g_list_prepend (GList *list,
53 GList* g_list_insert (GList *list,
56 GList* g_list_insert_sorted (GList *list,
59 GList* g_list_insert_before (GList *list,
62 GList* g_list_concat (GList *list1,
64 GList* g_list_remove (GList *list,
66 GList* g_list_remove_all (GList *list,
68 GList* g_list_remove_link (GList *list,
70 GList* g_list_delete_link (GList *list,
72 GList* g_list_reverse (GList *list);
73 GList* g_list_copy (GList *list);
74 GList* g_list_nth (GList *list,
76 GList* g_list_nth_prev (GList *list,
78 GList* g_list_find (GList *list,
80 GList* g_list_find_custom (GList *list,
83 gint g_list_position (GList *list,
85 gint g_list_index (GList *list,
87 GList* g_list_last (GList *list);
88 GList* g_list_first (GList *list);
89 guint g_list_length (GList *list);
90 void g_list_foreach (GList *list,
93 GList* g_list_sort (GList *list,
94 GCompareFunc compare_func);
95 GList* g_list_sort_with_data (GList *list,
96 GCompareDataFunc compare_func,
98 gpointer g_list_nth_data (GList *list,
101 #define g_list_previous(list) ((list) ? (((GList *)(list))->prev) : NULL)
102 #define g_list_next(list) ((list) ? (((GList *)(list))->next) : NULL)
104 #ifndef G_DISABLE_DEPRECATED
105 void g_list_push_allocator (gpointer allocator);
106 void g_list_pop_allocator (void);
110 #endif /* __G_LIST_H__ */