1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1999 Free Software Foundation, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library 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 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library 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.
33 GQueue *q = g_new (GQueue, 1);
35 q->list = q->list_end = NULL;
43 g_queue_free (GQueue *q)
48 g_list_free (q->list);
55 g_queue_get_size (GQueue *q)
57 return (q == NULL) ? 0 : q->list_size;
62 g_queue_push_front (GQueue *q, gpointer data)
66 q->list = g_list_prepend (q->list, data);
68 if (q->list_end == NULL)
69 q->list_end = q->list;
77 g_queue_push_back (GQueue *q, gpointer data)
81 q->list_end = g_list_append (q->list_end, data);
84 q->list = q->list_end;
86 q->list_end = q->list_end->next;
94 g_queue_pop_front (GQueue *q)
107 q->list = q->list_end = NULL;
112 q->list = node->next;
113 q->list->prev = NULL;
117 g_list_free_1 (node);
125 g_queue_pop_back (GQueue *q)
127 gpointer data = NULL;
129 if ((q) && (q->list))
138 q->list = q->list_end = NULL;
143 q->list_end = node->prev;
144 q->list_end->next = NULL;
148 g_list_free_1 (node);