repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Small update to crosstools
[AROS.git]
/
compiler
/
purify
/
test11.c
blob
3913c01d405ac5f123c8fde68c0412a247a43d76
1
#include <stdio.h>
2
#include <errno.h>
3
#include <ctype.h>
4
5
int
main
(
int
argc
,
char
**
argv
)
6
{
7
int
c
,
f
;
8
9
c
=
'a'
;
10
11
f
=
isalpha
(
c
);
12
f
=
tolower
(
c
);
13
f
=
toupper
(
c
);
14
15
c
=
errno
;
16
17
return
0
;
18
}