Update hints translations from Transifex
[midnight-commander.git] / lib / glibcompat.c
blob0522c0fe251efc047eeb531c7cbca9dda644b9b1
1 /*
2 GLIB - Library of useful routines for C programming
4 Copyright (C) 2009-2023
5 Free Software Foundation, Inc.
7 Written by:
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.
33 #include <config.h>
34 #include <string.h>
36 #include "global.h"
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)
54 /**
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.
63 * Since: 2.64
65 void
66 g_clear_slist (GSList ** slist_ptr, GDestroyNotify destroy)
68 GSList *slist;
70 slist = *slist_ptr;
72 if (slist != NULL)
74 *slist_ptr = NULL;
76 if (destroy != NULL)
77 g_slist_free_full (slist, destroy);
78 else
79 g_slist_free (slist);
83 /* --------------------------------------------------------------------------------------------- */
85 /**
86 * g_clear_list:
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.
94 * Since: 2.64
96 void
97 g_clear_list (GList ** list_ptr, GDestroyNotify destroy)
99 GList *list;
101 list = *list_ptr;
103 if (list != NULL)
105 *list_ptr = NULL;
107 if (destroy != NULL)
108 g_list_free_full (list, destroy);
109 else
110 g_list_free (list);
114 /* --------------------------------------------------------------------------------------------- */
116 #endif /* ! GLIB_CHECK_VERSION (2, 63, 3) */
118 #if ! GLIB_CHECK_VERSION (2, 32, 0)
120 * g_queue_free_full:
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.
127 * Since: 2.32
129 void
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.
148 * Since: 2.60
150 void
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 /* --------------------------------------------------------------------------------------------- */
165 * mc_g_string_copy:
166 * @dest: (not nullable): the destination #GString. Its current contents are destroyed
167 * @src: (not nullable): the source #GString
168 * @return: @dest
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.
176 GString *
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);
185 return dest;
188 /* --------------------------------------------------------------------------------------------- */
191 * mc_g_string_dup:
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.
199 GString *
200 mc_g_string_dup (const GString * s)
202 GString *ret = NULL;
204 if (s != NULL)
205 ret = g_string_new_len (s->str, s->len);
207 return ret;
210 /* --------------------------------------------------------------------------------------------- */