2 GLIB - Library of useful routines for C programming
4 Copyright (C) 2009-2023
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2009, 2013.
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 /** \file glibcompat.c
27 * \brief Source: compatibility with older versions of glib
29 * Following code was copied from glib to GNU Midnight Commander to
30 * provide compatibility with older versions of glib.
37 #include "glibcompat.h"
39 /*** global variables ****************************************************************************/
41 /*** file scope macro definitions ****************************************************************/
43 /*** file scope type declarations ****************************************************************/
45 /*** file scope variables ************************************************************************/
47 /*** file scope functions ************************************************************************/
49 /* --------------------------------------------------------------------------------------------- */
50 /*** public functions ****************************************************************************/
51 /* --------------------------------------------------------------------------------------------- */
53 #if ! GLIB_CHECK_VERSION (2, 63, 3)
55 * g_clear_slist: (skip)
56 * @slist_ptr: (not nullable): a #GSList return location
57 * @destroy: (nullable): the function to pass to g_slist_free_full() or NULL to not free elements
59 * Clears a pointer to a #GSList, freeing it and, optionally, freeing its elements using @destroy.
61 * @slist_ptr must be a valid pointer. If @slist_ptr points to a null #GSList, this does nothing.
66 g_clear_slist (GSList
** slist_ptr
, GDestroyNotify destroy
)
77 g_slist_free_full (slist
, destroy
);
83 /* --------------------------------------------------------------------------------------------- */
87 * @list_ptr: (not nullable): a #GList return location
88 * @destroy: (nullable): the function to pass to g_list_free_full() or NULL to not free elements
90 * Clears a pointer to a #GList, freeing it and, optionally, freeing its elements using @destroy.
92 * @list_ptr must be a valid pointer. If @list_ptr points to a null #GList, this does nothing.
97 g_clear_list (GList
** list_ptr
, GDestroyNotify destroy
)
108 g_list_free_full (list
, destroy
);
114 /* --------------------------------------------------------------------------------------------- */
116 #endif /* ! GLIB_CHECK_VERSION (2, 63, 3) */
118 #if ! GLIB_CHECK_VERSION (2, 32, 0)
121 * @queue: a pointer to a #GQueue
122 * @free_func: the function to be called to free each element's data
124 * Convenience method, which frees all the memory used by a #GQueue,
125 * and calls the specified destroy function on every element's data.
130 g_queue_free_full (GQueue
* queue
, GDestroyNotify free_func
)
132 g_queue_foreach (queue
, (GFunc
) free_func
, NULL
);
133 g_queue_free (queue
);
135 #endif /* ! GLIB_CHECK_VERSION (2, 32, 0) */
137 /* --------------------------------------------------------------------------------------------- */
139 #if ! GLIB_CHECK_VERSION (2, 60, 0)
141 * g_queue_clear_full:
142 * @queue: a pointer to a #GQueue
143 * @free_func: (nullable): the function to be called to free memory allocated
145 * Convenience method, which frees all the memory used by a #GQueue,
146 * and calls the provided @free_func on each item in the #GQueue.
151 g_queue_clear_full (GQueue
* queue
, GDestroyNotify free_func
)
153 g_return_if_fail (queue
!= NULL
);
155 if (free_func
!= NULL
)
156 g_queue_foreach (queue
, (GFunc
) free_func
, NULL
);
158 g_queue_clear (queue
);
160 #endif /* ! GLIB_CHECK_VERSION (2, 60, 0) */
162 /* --------------------------------------------------------------------------------------------- */
166 * @dest: (not nullable): the destination #GString. Its current contents are destroyed
167 * @src: (not nullable): the source #GString
170 * Copies the bytes from a #GString into a #GString, destroying any previous contents.
171 * It is rather like the standard strcpy() function, except that you do not have to worry about
172 * having enough space to copy the string.
174 * There is no such API in GLib2.
177 mc_g_string_copy (GString
* dest
, const GString
* src
)
179 g_return_val_if_fail (src
!= NULL
, NULL
);
180 g_return_val_if_fail (dest
!= NULL
, NULL
);
182 g_string_set_size (dest
, 0);
183 g_string_append_len (dest
, src
->str
, src
->len
);
188 /* --------------------------------------------------------------------------------------------- */
192 * @s: (nullable): the source #GString
193 * @return: @copy of @s
195 * Copies the bytes from one #GString to another.
197 * There is no such API in GLib2.
200 mc_g_string_dup (const GString
* s
)
205 ret
= g_string_new_len (s
->str
, s
->len
);
210 /* --------------------------------------------------------------------------------------------- */