Make prefix argument const. (#91662, Gustavo Carneiro)
[glib.git] / tests / slist-test.c
blob61416688013dd0ef68da567d4258c67a82262394
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/.
27 #undef G_DISABLE_ASSERT
28 #undef G_LOG_DOMAIN
30 #include <stdio.h>
31 #include <string.h>
32 #include "glib.h"
34 int array[10000];
35 gboolean failed = FALSE;
37 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
38 if (failed) \
39 { if (!m) \
40 g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
41 else \
42 g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
43 } \
44 else \
45 g_print ("."); fflush (stdout); \
46 } G_STMT_END
48 #define C2P(c) ((gpointer) ((long) (c)))
49 #define P2C(p) ((gchar) ((long) (p)))
51 #define GLIB_TEST_STRING "el dorado "
52 #define GLIB_TEST_STRING_5 "el do"
54 typedef struct {
55 guint age;
56 gchar name[40];
57 } GlibTestInfo;
59 static gint
60 my_list_compare_one (gconstpointer a, gconstpointer b)
62 gint one = *((const gint*)a);
63 gint two = *((const gint*)b);
64 return one-two;
67 static gint
68 my_list_compare_two (gconstpointer a, gconstpointer b)
70 gint one = *((const gint*)a);
71 gint two = *((const gint*)b);
72 return two-one;
75 int
76 main (int argc,
77 char *argv[])
79 GSList *slist, *st;
80 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
81 gint morenums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
82 gint i;
84 slist = NULL;
85 for (i = 0; i < 10; i++)
86 slist = g_slist_append (slist, &nums[i]);
87 slist = g_slist_reverse (slist);
89 for (i = 0; i < 10; i++)
91 st = g_slist_nth (slist, i);
92 g_assert (*((gint*) st->data) == (9 - i));
95 g_slist_free (slist);
96 slist = NULL;
98 for (i = 0; i < 10; i++)
99 slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_one);
102 g_print("\n");
103 g_slist_foreach (slist, my_list_print, NULL);
106 for (i = 0; i < 10; i++)
108 st = g_slist_nth (slist, i);
109 g_assert (*((gint*) st->data) == i);
112 g_slist_free(slist);
113 slist = NULL;
115 for (i = 0; i < 10; i++)
116 slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_two);
119 g_print("\n");
120 g_slist_foreach (slist, my_list_print, NULL);
123 for (i = 0; i < 10; i++)
125 st = g_slist_nth (slist, i);
126 g_assert (*((gint*) st->data) == (9 - i));
129 g_slist_free(slist);
130 slist = NULL;
132 for (i = 0; i < 10; i++)
133 slist = g_slist_prepend (slist, &morenums[i]);
135 slist = g_slist_sort (slist, my_list_compare_two);
138 g_print("\n");
139 g_slist_foreach (slist, my_list_print, NULL);
142 for (i = 0; i < 10; i++)
144 st = g_slist_nth (slist, i);
145 g_assert (*((gint*) st->data) == (9 - i));
148 g_slist_free(slist);
150 return 0;