mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
1999-01-24 Ulrich Drepper <drepper@cygnus.com> * ctype/ctype.c (toupper): Correct variable names from lat change. (tolower): Likewise.
This commit is contained in:
@ -39,11 +39,11 @@ func (isxdigit, _ISxdigit)
|
||||
int
|
||||
tolower (int c)
|
||||
{
|
||||
return __c >= -128 && __c < 256 ? __tolower (__c) : __c;
|
||||
return c >= -128 && c < 256 ? __tolower (c) : c;
|
||||
}
|
||||
|
||||
int
|
||||
toupper (int c)
|
||||
{
|
||||
return __c >= -128 && __c < 256 ? __toupper (__c) : __c;
|
||||
return c >= -128 && c < 256 ? __toupper (c) : c;
|
||||
}
|
||||
|
Reference in New Issue
Block a user