mc/src/glibcompat.h

38 lines
1.3 KiB
C
Raw Normal View History

2003-10-21 17:32:33 +04:00
/* 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 /* !__MC_GLIBCOMPAT_H */