mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 04:22:34 +03:00
cb08c1d0bf
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
25 lines
943 B
C
25 lines
943 B
C
#ifndef MC_GLIBCOMPAT_H
|
|
#define MC_GLIBCOMPAT_H
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
#if ! GLIB_CHECK_VERSION (2, 13, 0)
|
|
gboolean g_unichar_iszerowidth (gunichar);
|
|
#endif /* ! GLIB_CHECK_VERSION (2, 13, 0) */
|
|
|
|
#if ! GLIB_CHECK_VERSION (2, 16, 0)
|
|
int g_strcmp0 (const char *str1, const char *str2);
|
|
#endif /* ! GLIB_CHECK_VERSION (2, 16, 0) */
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC_GLIBCOMPAT_H */
|