mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
7b3b03f9db
* util.c: ... here. Q_ is not defined by just including glib.h. The glib implementation doesn't strip prefix from translations, so it's not suitable for us. Finally, it makes man2hlp depend on libintl. Reported by Leonard den Ottolander <leonard@den.ottolander.nl>
39 lines
1.3 KiB
C
39 lines
1.3 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. */
|
|
|
|
#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
|