1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
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:
Ulrich Drepper
1999-01-24 10:17:23 +00:00
parent d74e76f9f6
commit 440d13e289
6 changed files with 30 additions and 25 deletions

View File

@ -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;
}