Copyright clean-up (part 1):
[AROS.git] / compiler / purify / test11.c
blob2ee65039f910b28e73ab362e110861b1da2e1b13
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
7 #include <errno.h>
8 #include <ctype.h>
10 int main (int argc, char ** argv)
12 int c, f;
14 c = 'a';
16 f = isalpha (c);
17 f = tolower (c);
18 f = toupper (c);
20 c = errno;
22 return 0;