repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. use library function to parse memory string
[minix3.git]
/
lib
/
ansi
/
toupper.c
blob
521ae5569c728c85f6dc3bb2ba66faef7fe247f2
1
#include <ctype.h>
2
3
int
toupper
(
int
c
) {
4
return
islower
(
c
) ?
c
-
'a'
+
'A'
:
c
;
5
}