- Declare iswblank() in wctype.h, not isblank().

- Add iswblank() to wchar.h, too.

svn path=/trunk/; revision=42191
This commit is contained in:
Dmitry Gorbachev 2009-07-25 07:41:14 +00:00
parent 1c413906b2
commit 1e3f2b9732
2 changed files with 4 additions and 1 deletions

View file

@ -219,6 +219,9 @@ extern "C" {
_CRTIMP int __cdecl __iswcsym(wint_t _C);
_CRTIMP int __cdecl _iswcsym_l(wint_t _C,_locale_t _Locale);
_CRTIMP int __cdecl is_wctype(wint_t _C,wctype_t _Type);
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || !defined (NO_OLDNAMES)
int __cdecl iswblank(wint_t _C);
#endif
#endif
#ifndef _WDIRECT_DEFINED

View file

@ -122,7 +122,7 @@ extern "C" {
_CRTIMP int __cdecl __iswcsym(wint_t);
int __cdecl is_wctype(wint_t,wctype_t);
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || !defined (NO_OLDNAMES)
int __cdecl isblank(int _C);
int __cdecl iswblank(wint_t _C);
#endif
#endif