Kernel - Fixed bug in isupper()
[tpg/acess2.git] / KernelLand / Kernel / libc.c
index a16687e..751497c 100644 (file)
@@ -489,7 +489,7 @@ int isspace(int c)
 }
 int isupper(int c)
 {
-       return ('a' <= c && c <= 'z');
+       return ('A' <= c && c <= 'Z');
 }
 int isxdigit(int c)
 {

UCC git Repository :: git.ucc.asn.au