[MSVCRTEX]

- Add is(w)blank implementation

svn path=/trunk/; revision=56996
This commit is contained in:
Jérôme Gardou 2012-07-30 12:56:25 +00:00
parent 01197a3cc8
commit 3fb00ba84a
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#define __NO_CTYPE_LINES
#include <ctype.h>
int __cdecl isblank (int _C)
{
return (_isctype(_C, _BLANK) || _C == '\t');
}

View file

@ -0,0 +1,7 @@
#define _CRT_WCTYPE_NOINLINE
#include <ctype.h>
int __cdecl iswblank (wint_t _C)
{
return (iswctype(_C, _BLANK) || _C == '\t');
}

View file

@ -36,6 +36,8 @@ list(APPEND MSVCRTEX_SOURCE
startup/dllentry.c
startup/reactos.c
misc/fltused.c
misc/isblank.c
misc/iswblank.c
misc/ofmt_stub.c
)