mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 00:45:49 +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/dllentry.c
|
||||||
startup/reactos.c
|
startup/reactos.c
|
||||||
misc/fltused.c
|
misc/fltused.c
|
||||||
|
misc/isblank.c
|
||||||
|
misc/iswblank.c
|
||||||
misc/ofmt_stub.c
|
misc/ofmt_stub.c
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue