- Added iswspace.

svn path=/trunk/; revision=4161
This commit is contained in:
Hartmut Birr 2003-02-16 18:54:26 +00:00
parent 7644e39b2c
commit 77e9bdc898
3 changed files with 10 additions and 3 deletions

View file

@ -1,4 +1,4 @@
; $Id: ntdll.def,v 1.91 2003/01/08 19:50:39 robd Exp $
; $Id: ntdll.def,v 1.92 2003/02/16 18:54:26 hbirr Exp $
;
; ReactOS Operating System
;
@ -882,6 +882,7 @@ isspace
isupper
iswalpha
iswctype
iswspace
isxdigit
labs
log

View file

@ -1,4 +1,4 @@
; $Id: ntdll.edf,v 1.80 2003/01/08 19:50:39 robd Exp $
; $Id: ntdll.edf,v 1.81 2003/02/16 18:54:26 hbirr Exp $
;
; ReactOS Operating System
;
@ -885,6 +885,7 @@ isspace
isupper
iswalpha
iswctype
iswspace
isxdigit
labs
log

View file

@ -1,4 +1,4 @@
/* $Id: ctype.c,v 1.11 2002/10/01 18:57:23 chorns Exp $
/* $Id: ctype.c,v 1.12 2003/02/16 18:54:26 hbirr Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -372,6 +372,11 @@ int iswdigit(wint_t c)
return (iswctype (c, _DIGIT));
}
int iswspace(wint_t c)
{
return (iswctype (c, _SPACE));
}
int iswlower(wint_t c)
{
return (iswctype (c, _LOWER));