 |
Ardour
8.12
|
Go to the documentation of this file.
27 #ifndef __GDK_I18N_H__
28 #define __GDK_I18N_H__
30 #ifndef GDK_DISABLE_DEPRECATED
35 #include <gdkconfig.h>
41 #if !defined(GDK_HAVE_BROKEN_WCTYPE) && (defined(GDK_HAVE_WCTYPE_H) || defined(GDK_HAVE_WCHAR_H)) && !defined(X_LOCALE)
42 # ifdef GDK_HAVE_WCTYPE_H
45 # ifdef GDK_HAVE_WCHAR_H
49 # define gdk_iswalnum(c) iswalnum(c)
50 # define gdk_iswspace(c) iswspace(c)
53 # define gdk_iswalnum(c) ((wchar_t)(c) <= 0xFF && isalnum(c))
54 # define gdk_iswspace(c) ((wchar_t)(c) <= 0xFF && isspace(c))