mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[MSVCRTEX]
- Add is(w)blank implementation svn path=/trunk/; revision=56996
This commit is contained in:
parent
01197a3cc8
commit
3fb00ba84a
3 changed files with 16 additions and 0 deletions
7
reactos/lib/sdk/crt/misc/isblank.c
Normal file
7
reactos/lib/sdk/crt/misc/isblank.c
Normal file
|
@ -0,0 +1,7 @@
|
|||
#define __NO_CTYPE_LINES
|
||||
#include <ctype.h>
|
||||
|
||||
int __cdecl isblank (int _C)
|
||||
{
|
||||
return (_isctype(_C, _BLANK) || _C == '\t');
|
||||
}
|
7
reactos/lib/sdk/crt/misc/iswblank.c
Normal file
7
reactos/lib/sdk/crt/misc/iswblank.c
Normal file
|
@ -0,0 +1,7 @@
|
|||
#define _CRT_WCTYPE_NOINLINE
|
||||
#include <ctype.h>
|
||||
|
||||
int __cdecl iswblank (wint_t _C)
|
||||
{
|
||||
return (iswctype(_C, _BLANK) || _C == '\t');
|
||||
}
|
|
@ -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
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue