epoc32/include/stdapis/glib-2.0/glib/glist.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 0 061f57f2323e
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
williamr@2
     1
/* GLIB - Library of useful routines for C programming
williamr@2
     2
 * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
williamr@2
     3
 * Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
williamr@2
     4
 *
williamr@2
     5
 * This library is free software; you can redistribute it and/or
williamr@2
     6
 * modify it under the terms of the GNU Lesser General Public
williamr@2
     7
 * License as published by the Free Software Foundation; either
williamr@2
     8
 * version 2 of the License, or (at your option) any later version.
williamr@2
     9
 *
williamr@2
    10
 * This library is distributed in the hope that it will be useful,
williamr@2
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
williamr@2
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
williamr@2
    13
 * Lesser General Public License for more details.
williamr@2
    14
 *
williamr@2
    15
 * You should have received a copy of the GNU Lesser General Public
williamr@2
    16
 * License along with this library; if not, write to the
williamr@2
    17
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
williamr@2
    18
 * Boston, MA 02111-1307, USA.
williamr@2
    19
 */
williamr@2
    20
williamr@2
    21
/*
williamr@2
    22
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
williamr@2
    23
 * file for a list of people on the GLib Team.  See the ChangeLog
williamr@2
    24
 * files for a list of changes.  These files are distributed with
williamr@2
    25
 * GLib at ftp://ftp.gtk.org/pub/gtk/. 
williamr@2
    26
 */
williamr@2
    27
williamr@2
    28
#ifndef __G_LIST_H__
williamr@2
    29
#define __G_LIST_H__
williamr@2
    30
williamr@2
    31
#include <_ansi.h>
williamr@2
    32
#include <glib/gmem.h>
williamr@2
    33
williamr@2
    34
G_BEGIN_DECLS
williamr@2
    35
williamr@2
    36
typedef struct _GList GList;
williamr@2
    37
williamr@2
    38
struct _GList
williamr@2
    39
{
williamr@2
    40
  gpointer data;
williamr@2
    41
  GList *next;
williamr@2
    42
  GList *prev;
williamr@2
    43
};
williamr@2
    44
williamr@2
    45
/* Doubly linked lists
williamr@2
    46
 */
williamr@2
    47
IMPORT_C GList*   g_list_alloc          (void);
williamr@2
    48
IMPORT_C void     g_list_free           (GList            *list);
williamr@2
    49
IMPORT_C void     g_list_free_1         (GList            *list);
williamr@2
    50
#define  g_list_free1                   g_list_free_1
williamr@2
    51
IMPORT_C GList*   g_list_append         (GList            *list,
williamr@2
    52
					 gpointer          data) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    53
IMPORT_C GList*   g_list_prepend        (GList            *list,
williamr@2
    54
					 gpointer          data) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    55
IMPORT_C GList*   g_list_insert                  (GList            *list,
williamr@2
    56
					 gpointer          data,
williamr@2
    57
					 gint              position) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    58
IMPORT_C GList*   g_list_insert_sorted           (GList            *list,
williamr@2
    59
					 gpointer          data,
williamr@2
    60
					 GCompareFunc      func) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    61
IMPORT_C GList*   g_list_insert_sorted_with_data (GList            *list,
williamr@2
    62
					 gpointer          data,
williamr@2
    63
					 GCompareDataFunc  func,
williamr@2
    64
					 gpointer          user_data) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    65
IMPORT_C GList*   g_list_insert_before  (GList            *list,
williamr@2
    66
					 GList            *sibling,
williamr@2
    67
					 gpointer          data) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    68
IMPORT_C GList*   g_list_concat         (GList            *list1,
williamr@2
    69
					 GList            *list2) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    70
IMPORT_C GList*   g_list_remove         (GList            *list,
williamr@2
    71
					 gconstpointer     data) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    72
IMPORT_C GList*   g_list_remove_all     (GList            *list,
williamr@2
    73
					 gconstpointer     data) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    74
IMPORT_C GList*   g_list_remove_link    (GList            *list,
williamr@2
    75
					 GList            *llink) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    76
IMPORT_C GList*   g_list_delete_link    (GList            *list,
williamr@2
    77
					 GList            *link_) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
    78
IMPORT_C GList*   g_list_reverse        (GList            *list);
williamr@2
    79
IMPORT_C GList*   g_list_copy           (GList            *list);
williamr@2
    80
IMPORT_C GList*   g_list_nth            (GList            *list,
williamr@2
    81
					 guint             n);
williamr@2
    82
IMPORT_C GList*   g_list_nth_prev       (GList            *list,
williamr@2
    83
					 guint             n);
williamr@2
    84
IMPORT_C GList*   g_list_find           (GList            *list,
williamr@2
    85
					 gconstpointer     data);
williamr@2
    86
IMPORT_C GList*   g_list_find_custom    (GList            *list,
williamr@2
    87
					 gconstpointer     data,
williamr@2
    88
					 GCompareFunc      func);
williamr@2
    89
IMPORT_C gint     g_list_position       (GList            *list,
williamr@2
    90
					 GList            *llink);
williamr@2
    91
IMPORT_C gint     g_list_index          (GList            *list,
williamr@2
    92
					 gconstpointer     data);
williamr@2
    93
IMPORT_C GList*   g_list_last           (GList            *list);
williamr@2
    94
IMPORT_C GList*   g_list_first          (GList            *list);
williamr@2
    95
IMPORT_C guint    g_list_length         (GList            *list);
williamr@2
    96
IMPORT_C void     g_list_foreach        (GList            *list,
williamr@2
    97
					 GFunc             func,
williamr@2
    98
					 gpointer          user_data);
williamr@2
    99
IMPORT_C GList*   g_list_sort           (GList            *list,
williamr@2
   100
					 GCompareFunc      compare_func) G_GNUC_WARN_UNUSED_RESULT;
williamr@2
   101
IMPORT_C GList*   g_list_sort_with_data (GList            *list,
williamr@2
   102
					 GCompareDataFunc  compare_func,
williamr@2
   103
					 gpointer          user_data)  G_GNUC_WARN_UNUSED_RESULT;
williamr@2
   104
IMPORT_C gpointer g_list_nth_data       (GList            *list,
williamr@2
   105
					 guint             n);
williamr@2
   106
williamr@2
   107
williamr@2
   108
#define g_list_previous(list)	        ((list) ? (((GList *)(list))->prev) : NULL)
williamr@2
   109
#define g_list_next(list)	        ((list) ? (((GList *)(list))->next) : NULL)
williamr@2
   110
williamr@2
   111
#ifndef G_DISABLE_DEPRECATED
williamr@2
   112
IMPORT_C void     g_list_push_allocator          (gpointer          allocator);
williamr@2
   113
IMPORT_C void     g_list_pop_allocator           (void);
williamr@2
   114
#endif
williamr@2
   115
G_END_DECLS
williamr@2
   116
williamr@2
   117
#endif /* __G_LIST_H__ */
williamr@2
   118