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
at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git]
/
lib
/
ansi
/
tolower.c
blob
ff95ae0d802b0c86bdc419f44f8a02ea8903cfd7
1
#include <ctype.h>
2
3
int
tolower
(
int
c
) {
4
return
isupper
(
c
) ?
c
-
'A'
+
'a'
:
c
;
5
}