Kernel - Fixed bug in isupper()
authorJohn Hodge (sonata) <[email protected]>
Tue, 5 Mar 2013 07:38:00 +0000 (15:38 +0800)
committerJohn Hodge (sonata) <[email protected]>
Tue, 5 Mar 2013 07:38:00 +0000 (15:38 +0800)
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