mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
93dbc46e9c
* moved src/global.h into lib/global.h * moved glibcompat.[ch] from ./src/ into ./lib/ * moved fs.h from ./src/ into ./lib/ Signed-off-by: Slava Zanko <slavazanko@gmail.com>
24 lines
869 B
C
24 lines
869 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, 7, 0)
|
|
gboolean g_file_set_contents (const gchar *, const gchar *, gssize, GError **);
|
|
#endif /* ! GLIB_CHECK_VERSION (2, 7, 0) */
|
|
|
|
|
|
#endif /* MC_GLIBCOMPAT_H */
|