glibcompat.h 943 B

123456789101112131415161718192021222324
  1. #ifndef MC_GLIBCOMPAT_H
  2. #define MC_GLIBCOMPAT_H
  3. /*** typedefs(not structures) and defined constants **********************************************/
  4. /*** enums ***************************************************************************************/
  5. /*** structures declarations (and typedefs of structures)*****************************************/
  6. /*** global variables defined in .c file *********************************************************/
  7. /*** declarations of public functions ************************************************************/
  8. #if ! GLIB_CHECK_VERSION (2, 13, 0)
  9. gboolean g_unichar_iszerowidth (gunichar);
  10. #endif /* ! GLIB_CHECK_VERSION (2, 13, 0) */
  11. #if ! GLIB_CHECK_VERSION (2, 16, 0)
  12. int g_strcmp0 (const char *str1, const char *str2);
  13. #endif /* ! GLIB_CHECK_VERSION (2, 16, 0) */
  14. /*** inline functions ****************************************************************************/
  15. #endif /* MC_GLIBCOMPAT_H */