projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1b1529
)
(tolower): Don't use __tolower.
author
drepper
<drepper>
Sat, 6 Feb 1999 23:49:33 +0000
(23:49 +0000)
committer
drepper
<drepper>
Sat, 6 Feb 1999 23:49:33 +0000
(23:49 +0000)
(toupper): Don't use toupper.
ctype/ctype.c
patch
|
blob
|
history
diff --git
a/ctype/ctype.c
b/ctype/ctype.c
index
ce6d709
..
61e7684
100644
(file)
--- a/
ctype/ctype.c
+++ b/
ctype/ctype.c
@@
-39,11
+39,11
@@
func (isxdigit, _ISxdigit)
int
tolower (int c)
{
- return c >= -128 && c < 256 ? __
tolower (c)
: c;
+ return c >= -128 && c < 256 ? __
ctype_tolower[c]
: c;
}
int
toupper (int c)
{
- return c >= -128 && c < 256 ? __
toupper (c)
: c;
+ return c >= -128 && c < 256 ? __
ctype_toupper[c]
: c;
}