Skip to content
Snippets Groups Projects
Commit 2e86454b authored by patacongo's avatar patacongo
Browse files

fix isupper()

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@228 42af7a65-404d-4744-a932-0658087f49c3
parent b94766ca
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,7 @@
*
************************************************************/
#define isupper(c) ((c) >= 'a' && (c) <= 'z')
#define isupper(c) ((c) >= 'A' && (c) <= 'Z')
/************************************************************
* Function: isalpha
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment