9
0
Fork 0

fix isupper()

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@228 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2007-05-19 00:21:22 +00:00
parent a604094804
commit ceaddcf29a
1 changed files with 1 additions and 1 deletions

View File

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