Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
glist.h
Go to the documentation of this file.
1/* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20/*
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/.
25 */
26
27#ifndef __G_LIST_H__
28#define __G_LIST_H__
29
30#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
31#error "Only <glib.h> can be included directly."
32#endif
33
34#include <glib/gmem.h>
35#include <glib/gnode.h>
36
38
39typedef struct _GList GList;
40
47
48/* Doubly linked lists
49 */
53void g_list_free (GList *list);
55void g_list_free_1 (GList *list);
56#define g_list_free1 g_list_free_1
59 GDestroyNotify free_func);
68 gpointer data,
72 gpointer data,
76 gpointer data,
81 GList *sibling,
85 GList *sibling,
106
109 GCopyFunc func,
111
114 guint n);
117 guint n);
120 gconstpointer data);
123 gconstpointer data,
124 GCompareFunc func);
127 GList *llink);
130 gconstpointer data);
139 GFunc func,
140 gpointer user_data);
146 GCompareDataFunc compare_func,
150 guint n);
151
153void g_clear_list (GList **list_ptr,
154 GDestroyNotify destroy);
155
156#define g_clear_list(list_ptr, destroy) \
157 G_STMT_START { \
158 GList *_list; \
159 \
160 _list = *(list_ptr); \
161 if (_list) \
162 { \
163 *list_ptr = NULL; \
164 \
165 if ((destroy) != NULL) \
166 g_list_free_full (_list, (destroy)); \
167 else \
168 g_list_free (_list); \
169 } \
170 } G_STMT_END \
171 GLIB_AVAILABLE_MACRO_IN_2_64
172
173
174#define g_list_previous(list) ((list) ? (((GList *)(list))->prev) : NULL)
175#define g_list_next(list) ((list) ? (((GList *)(list))->next) : NULL)
176
178
179#endif /* __G_LIST_H__ */
#define GLIB_AVAILABLE_IN_2_34
#define GLIB_AVAILABLE_IN_ALL
#define GLIB_AVAILABLE_IN_2_62
#define GLIB_AVAILABLE_IN_2_64
GLIB_AVAILABLE_IN_2_62 GList * g_list_insert_before_link(GList *list, GList *sibling, GList *link_) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_remove(GList *list, gconstpointer data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_nth_prev(GList *list, guint n)
GLIB_AVAILABLE_IN_ALL guint g_list_length(GList *list)
GLIB_AVAILABLE_IN_ALL GList * g_list_prepend(GList *list, gpointer data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_alloc(void) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_insert_sorted_with_data(GList *list, gpointer data, GCompareDataFunc func, gpointer user_data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_insert(GList *list, gpointer data, gint position) G_GNUC_WARN_UNUSED_RESULT
#define g_clear_list(list_ptr, destroy)
Definition glist.h:156
GLIB_AVAILABLE_IN_ALL void g_list_free_1(GList *list)
GLIB_AVAILABLE_IN_ALL GList * g_list_find_custom(GList *list, gconstpointer data, GCompareFunc func)
GLIB_AVAILABLE_IN_ALL GList * g_list_append(GList *list, gpointer data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_sort(GList *list, GCompareFunc compare_func) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL gint g_list_index(GList *list, gconstpointer data)
GLIB_AVAILABLE_IN_ALL void g_list_free(GList *list)
typedefG_BEGIN_DECLS struct _GList GList
Definition glist.h:39
GLIB_AVAILABLE_IN_ALL GList * g_list_delete_link(GList *list, GList *link_) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL void g_list_free_full(GList *list, GDestroyNotify free_func)
GLIB_AVAILABLE_IN_ALL GList * g_list_concat(GList *list1, GList *list2) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL void g_list_foreach(GList *list, GFunc func, gpointer user_data)
GLIB_AVAILABLE_IN_ALL GList * g_list_copy(GList *list) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_reverse(GList *list) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_find(GList *list, gconstpointer data)
GLIB_AVAILABLE_IN_ALL GList * g_list_remove_all(GList *list, gconstpointer data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_insert_sorted(GList *list, gpointer data, GCompareFunc func) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_last(GList *list)
GLIB_AVAILABLE_IN_ALL GList * g_list_remove_link(GList *list, GList *llink) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL gint g_list_position(GList *list, GList *llink)
GLIB_AVAILABLE_IN_ALL GList * g_list_sort_with_data(GList *list, GCompareDataFunc compare_func, gpointer user_data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_2_34 GList * g_list_copy_deep(GList *list, GCopyFunc func, gpointer user_data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_insert_before(GList *list, GList *sibling, gpointer data) G_GNUC_WARN_UNUSED_RESULT
GLIB_AVAILABLE_IN_ALL GList * g_list_first(GList *list)
GLIB_AVAILABLE_IN_ALL GList * g_list_nth(GList *list, guint n)
GLIB_AVAILABLE_IN_ALL gpointer g_list_nth_data(GList *list, guint n)
#define G_GNUC_WARN_UNUSED_RESULT
Definition gmacros.h:814
#define G_END_DECLS
Definition gmacros.h:910
#define G_BEGIN_DECLS
Definition gmacros.h:909
gpointer(* GCopyFunc)(gconstpointer src, gpointer data)
Definition gtypes.h:160
void * gpointer
Definition gtypes.h:109
gint(* GCompareFunc)(gconstpointer a, gconstpointer b)
Definition gtypes.h:112
int gint
Definition gtypes.h:55
const void * gconstpointer
Definition gtypes.h:110
void(* GFunc)(gpointer data, gpointer user_data)
Definition gtypes.h:141
void(* GDestroyNotify)(gpointer data)
Definition gtypes.h:140
unsigned int guint
Definition gtypes.h:61
gint(* GCompareDataFunc)(gconstpointer a, gconstpointer b, gpointer user_data)
Definition gtypes.h:114
Definition glist.h:42
GList * prev
Definition glist.h:45
GList * next
Definition glist.h:44
gpointer data
Definition glist.h:43