fix isupper()

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@228 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-05-19 00:21:22 +00:00
parent b94766ca8f
commit 2e86454b82

View File

@ -126,7 +126,7 @@
*
************************************************************/
#define isupper(c) ((c) >= 'a' && (c) <= 'z')
#define isupper(c) ((c) >= 'A' && (c) <= 'Z')
/************************************************************
* Function: isalpha