xref: /plan9-contrib/sys/src/libc/port/toupper.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #include	<ctype.h>
2 
3 toupper(int c)
4 {
5 
6 	if(c < 'a' || c > 'z')
7 		return c;
8 	return _toupper(c);
9 }
10 
11 tolower(int c)
12 {
13 
14 	if(c < 'A' || c > 'Z')
15 		return c;
16 	return _tolower(c);
17 }
18