d3d8/tests: Do not test sysmem textures in test_mipmap_upload().
[wine.git] / include / msvcrt / ctype.h
blob312888c3cfc4179d75f451eb1ac9e538611da2f7
1 /*
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.
7 */
8 #ifndef __WINE_CTYPE_H
9 #define __WINE_CTYPE_H
11 #include <corecrt_wctype.h>
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 #ifndef WEOF
18 #define WEOF (wint_t)(0xFFFF)
19 #endif
21 _ACRTIMP int __cdecl __isascii(int);
22 _ACRTIMP int __cdecl __iscsym(int);
23 _ACRTIMP int __cdecl __iscsymf(int);
24 _ACRTIMP int __cdecl __toascii(int);
25 _ACRTIMP int __cdecl _isblank_l(int,_locale_t);
26 _ACRTIMP int __cdecl _isctype(int,int);
27 _ACRTIMP int __cdecl _isctype_l(int,int,_locale_t);
28 _ACRTIMP int __cdecl _tolower(int);
29 _ACRTIMP int __cdecl _tolower_l(int,_locale_t);
30 _ACRTIMP int __cdecl _toupper(int);
31 _ACRTIMP int __cdecl _toupper_l(int,_locale_t);
32 _ACRTIMP int __cdecl isalnum(int);
33 _ACRTIMP int __cdecl isalpha(int);
34 _ACRTIMP int __cdecl isblank(int);
35 _ACRTIMP int __cdecl iscntrl(int);
36 _ACRTIMP int __cdecl isdigit(int);
37 _ACRTIMP int __cdecl isgraph(int);
38 _ACRTIMP int __cdecl islower(int);
39 _ACRTIMP int __cdecl isprint(int);
40 _ACRTIMP int __cdecl _isprint_l(int,_locale_t);
41 _ACRTIMP int __cdecl ispunct(int);
42 _ACRTIMP int __cdecl isspace(int);
43 _ACRTIMP int __cdecl _isspace_l(int,_locale_t);
44 _ACRTIMP int __cdecl isupper(int);
45 _ACRTIMP int __cdecl isxdigit(int);
46 _ACRTIMP int __cdecl tolower(int);
47 _ACRTIMP int __cdecl toupper(int);
49 #ifdef __cplusplus
51 #endif
54 static inline int isascii(int c) { return __isascii(c); }
55 static inline int iscsym(int c) { return __iscsym(c); }
56 static inline int iscsymf(int c) { return __iscsymf(c); }
57 static inline int toascii(int c) { return __toascii(c); }
59 #endif /* __WINE_CTYPE_H */