2 * Character type definitions
4 * Derived from the mingw header written by Colin Peters.
5 * Modified for Wine use by Jon Griffiths and Francois Gouget.
6 * This file is in the public domain.
10 #define __WINE_USE_MSVCRT
12 #include "msvcrt/wctype.h"
19 int MSVCRT(__isascii)(int);
20 int MSVCRT(__iscsym)(int);
21 int MSVCRT(__iscsymf)(int);
22 int MSVCRT(__toascii)(int);
23 int MSVCRT(_isctype)(int,int);
24 int MSVCRT(_tolower)(int);
25 int MSVCRT(_toupper)(int);
26 int MSVCRT(isalnum)(int);
27 int MSVCRT(isalpha)(int);
28 int MSVCRT(iscntrl)(int);
29 int MSVCRT(isdigit)(int);
30 int MSVCRT(isgraph)(int);
31 int MSVCRT(islower)(int);
32 int MSVCRT(isprint)(int);
33 int MSVCRT(ispunct)(int);
34 int MSVCRT(isspace)(int);
35 int MSVCRT(isupper)(int);
36 int MSVCRT(isxdigit)(int);
37 int MSVCRT(tolower)(int);
38 int MSVCRT(toupper)(int);
45 #ifndef USE_MSVCRT_PREFIX
46 #define isascii __isascii
47 #define iscsym __iscsym
48 #define iscsymf __iscsymf
49 #define toascii __toascii
50 #endif /* USE_MSVCRT_PREFIX */
52 #endif /* __WINE_CTYPE_H */