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:
a364d13
)
(_tolower): Don't use __tolower.
author
drepper
<drepper>
Sat, 6 Feb 1999 23:48:39 +0000
(23:48 +0000)
committer
drepper
<drepper>
Sat, 6 Feb 1999 23:48:39 +0000
(23:48 +0000)
(_toupper): Don't use __toupper.
ctype/ctype-extn.c
patch
|
blob
|
history
diff --git
a/ctype/ctype-extn.c
b/ctype/ctype-extn.c
index
d229f60
..
5daba66
100644
(file)
--- a/
ctype/ctype-extn.c
+++ b/
ctype/ctype-extn.c
@@
-30,12
+30,12
@@
isblank (int c)
int
_tolower (int c)
{
- return
__tolower (c)
;
+ return
c < -128 || c > 255 ? c : __ctype_tolower[c]
;
}
int
_toupper (int c)
{
- return
__toupper (c)
;
+ return
c < -128 || c > 255 ? c : __ctype_toupper[c]
;
}
int