From: John Hodge (sonata) Date: Tue, 5 Mar 2013 07:38:00 +0000 (+0800) Subject: Kernel - Fixed bug in isupper() X-Git-Tag: rel0.15~537^2~5 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=036de600b62968abe291d596be72122dee5c71a9;p=tpg%2Facess2.git Kernel - Fixed bug in isupper() --- diff --git a/KernelLand/Kernel/libc.c b/KernelLand/Kernel/libc.c index a16687e4..751497cd 100644 --- a/KernelLand/Kernel/libc.c +++ b/KernelLand/Kernel/libc.c @@ -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) {