Update contrib.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-gutils.c Utils shared between convenience lib and installed lib
4 * Copyright (C) 2003 Red Hat, Inc.
5 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #endif //__SYMBIAN32__
29 #include "dbus-gutils.h"
30 #include "dbus-gtest.h"
34 #include<glib_global.h>
37 #ifndef DOXYGEN_SHOULD_SKIP_THIS
40 _dbus_gutils_split_path (const char *path)
50 if (path[1] != '\0') /* if not "/" */
61 split = g_new0 (char*, n_components + 1);
64 if (n_components == 0)
68 while (comp < n_components)
74 while (j < len && path[j] != '/')
77 /* Now [i, j) is the path component */
79 g_assert (path[i] != '/');
80 g_assert (j == len || path[j] == '/');
82 split[comp] = g_strndup (&path[i], j - i + 1);
84 split[comp][j-i] = '\0';
95 _dbus_gutils_wincaps_to_uscore (const char *caps)
100 str = g_string_new (NULL);
104 if (g_ascii_isupper (*p))
107 (str->len < 2 || str->str[str->len-2] != '_'))
108 g_string_append_c (str, '_');
109 g_string_append_c (str, g_ascii_tolower (*p));
113 g_string_append_c (str, *p);
118 return g_string_free (str, FALSE);
122 #ifdef DBUS_BUILD_TESTS
125 * @ingroup DBusGLibInternals
126 * Unit test for GLib utils internals
127 * Returns: #TRUE on success.
133 _dbus_gutils_test (const char *test_data_dir)
139 #endif /* DBUS_BUILD_TESTS */
141 #endif /* DOXYGEN_SHOULD_SKIP_THIS */