mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
e792cffb8d
double underscore. Added #includes for dependent files. * popt.c: Likewise. * popthelp.c: Likewise. * tree.c: Moved a macro from tree.h to here, as it is useless outside tree.c.
38 lines
1.2 KiB
C
38 lines
1.2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef MC_GLIBCOMPAT_H
|
|
#define MC_GLIBCOMPAT_H
|
|
|
|
#if GLIB_MAJOR_VERSION < 2
|
|
|
|
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
|