Author: dgorbachev Date: Sat Jul 25 09:41:14 2009 New Revision: 42191
URL: http://svn.reactos.org/svn/reactos?rev=42191&view=rev Log: - Declare iswblank() in wctype.h, not isblank(). - Add iswblank() to wchar.h, too.
Modified: trunk/reactos/include/crt/wchar.h trunk/reactos/include/crt/wctype.h
Modified: trunk/reactos/include/crt/wchar.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/wchar.h?rev=421... ============================================================================== --- trunk/reactos/include/crt/wchar.h [iso-8859-1] (original) +++ trunk/reactos/include/crt/wchar.h [iso-8859-1] Sat Jul 25 09:41:14 2009 @@ -219,6 +219,9 @@ _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
Modified: trunk/reactos/include/crt/wctype.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/wctype.h?rev=42... ============================================================================== --- trunk/reactos/include/crt/wctype.h [iso-8859-1] (original) +++ trunk/reactos/include/crt/wctype.h [iso-8859-1] Sat Jul 25 09:41:14 2009 @@ -122,7 +122,7 @@ _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