diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-04-10 19:37:24 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-04-10 19:37:24 -0400 |
commit | f510fc1d904d3266fd433b49664a7685f4fc89ef (patch) | |
tree | b32979ae4d9d3836b3cc343a1e2083179380a5ae /src | |
parent | 7aa3f1d08292d43b983075e190eee964c389e347 (diff) | |
download | postgresql-f510fc1d904d3266fd433b49664a7685f4fc89ef.tar.gz postgresql-f510fc1d904d3266fd433b49664a7685f4fc89ef.zip |
Add some more mapping macros for Microsoft wide-character API.
Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port/win32.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index 4fe7c61c75e..8a3c33f995e 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -284,8 +284,24 @@ typedef int pid_t; #define toupper_l _toupper_l #define towlower_l _towlower_l #define towupper_l _towupper_l +#define isdigit_l _isdigit_l +#define iswdigit_l _iswdigit_l +#define isalpha_l _isalpha_l +#define iswalpha_l _iswalpha_l #define isalnum_l _isalnum_l #define iswalnum_l _iswalnum_l +#define isupper_l _isupper_l +#define iswupper_l _iswupper_l +#define islower_l _islower_l +#define iswlower_l _iswlower_l +#define isgraph_l _isgraph_l +#define iswgraph_l _iswgraph_l +#define isprint_l _isprint_l +#define iswprint_l _iswprint_l +#define ispunct_l _ispunct_l +#define iswpunct_l _iswpunct_l +#define isspace_l _isspace_l +#define iswspace_l _iswspace_l #define strcoll_l _strcoll_l #define wcscoll_l _wcscoll_l |