Initial packaging to sync OBS with git/gerrit
[profile/ivi/gtk3.git] / gdk / x11 / checksettings.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 2006 Tim Janik
3  *
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.
8  *
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.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "config.h"
19
20 #include "gdktypes.h"
21
22 #include <glib.h>
23 #include <string.h>
24
25 #include "gdksettings.c"
26
27 int
28 main (int   argc,
29       char *argv[])
30 {
31   guint i, accu = 0;
32
33   for (i = 0; i < GDK_SETTINGS_N_ELEMENTS(); i++)
34     {
35       if (gdk_settings_map[i].xsettings_offset != accu)
36         g_error ("settings_map[%u].xsettings_offset != %u\n", i, accu);
37       accu += strlen (gdk_settings_names + accu) + 1;
38       if (gdk_settings_map[i].gdk_offset != accu)
39         g_error ("settings_map[%u].gdk_offset != %u\n", i, accu);
40       accu += strlen (gdk_settings_names + accu) + 1;
41     }
42
43   return 0;
44 }