mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
758ab591d8
Mostly \file and \brief tag added. Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
/* glibcompat.h -- declarations for functions decared in glibcompat.c,
|
|
i.e. functions present only in recent versions of glib.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
|
|
|
/** \file glibcompat.h
|
|
* \brief Header: old glib compatibility
|
|
*
|
|
* Following code was copied from glib to GNU Midnight Commander to
|
|
* provide compatibility with older versions of glib.
|
|
*/
|
|
|
|
#ifndef MC_GLIBCOMPAT_H
|
|
#define MC_GLIBCOMPAT_H
|
|
|
|
#if GLIB_MAJOR_VERSION < 2
|
|
|
|
gsize g_strlcat (gchar *dest, const gchar *src, gsize dest_size);
|
|
gsize g_strlcpy (gchar *dest, const gchar *src, gsize dest_size);
|
|
#define g_try_malloc(size) malloc(size)
|
|
#define g_try_realloc(ptr,size) realloc(ptr,size)
|
|
|
|
static inline GSList *
|
|
g_slist_delete_link (GSList *list, GSList *link)
|
|
{
|
|
list = g_slist_remove_link (list, link);
|
|
g_slist_free_1 (link);
|
|
return list;
|
|
}
|
|
|
|
#endif /* GLIB_MAJOR_VERSION < 2 */
|
|
|
|
#endif
|