mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Misc ctype wine sync.
svn path=/trunk/; revision=33851
This commit is contained in:
@@ -379,7 +379,7 @@ int iscntrl(int c)
|
||||
*/
|
||||
int __iscsym(int c)
|
||||
{
|
||||
return(isalnum(c)||(c == '_'));
|
||||
return (c < 127 && (isalnum(c) || (c == '_')));
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -387,7 +387,7 @@ int __iscsym(int c)
|
||||
*/
|
||||
int __iscsymf(int c)
|
||||
{
|
||||
return(isalpha(c)||(c == '_'));
|
||||
return (c < 127 && (isalpha(c) || (c == '_')));
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user