summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-05-19 00:21:22 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-05-19 00:21:22 +0000
commitda7a770b29292489fc960857f3a6ae9044975f06 (patch)
tree0c64fb47884e4fe449d0d924a13c63d61f3c607a
parenta75eeec47f39797429d5cae90db057374aeeac5d (diff)
downloadnuttx-da7a770b29292489fc960857f3a6ae9044975f06.tar.gz
nuttx-da7a770b29292489fc960857f3a6ae9044975f06.tar.bz2
nuttx-da7a770b29292489fc960857f3a6ae9044975f06.zip
fix isupper()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@228 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/include/ctype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/include/ctype.h b/nuttx/include/ctype.h
index 6cc2cb895..67c157e2e 100644
--- a/nuttx/include/ctype.h
+++ b/nuttx/include/ctype.h
@@ -126,7 +126,7 @@
*
************************************************************/
-#define isupper(c) ((c) >= 'a' && (c) <= 'z')
+#define isupper(c) ((c) >= 'A' && (c) <= 'Z')
/************************************************************
* Function: isalpha