summaryrefslogtreecommitdiff
path: root/nuttx/lib/lib_strcasecmp.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-08-15 19:31:30 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-08-15 19:31:30 +0000
commitcc7a78241f8535fd006a51951ab99b378bf37924 (patch)
tree3a2d5a9294885a688d256e4b11e4a9351066c6c5 /nuttx/lib/lib_strcasecmp.c
parentce2e2a11b0b2b403abdbcdc4bfb34b940560f002 (diff)
downloadpx4-nuttx-cc7a78241f8535fd006a51951ab99b378bf37924.tar.gz
px4-nuttx-cc7a78241f8535fd006a51951ab99b378bf37924.tar.bz2
px4-nuttx-cc7a78241f8535fd006a51951ab99b378bf37924.zip
Fix strcasecmp
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2019 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/lib/lib_strcasecmp.c')
-rw-r--r--nuttx/lib/lib_strcasecmp.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/nuttx/lib/lib_strcasecmp.c b/nuttx/lib/lib_strcasecmp.c
index e5d14bda9..425a3e639 100644
--- a/nuttx/lib/lib_strcasecmp.c
+++ b/nuttx/lib/lib_strcasecmp.c
@@ -1,7 +1,7 @@
/****************************************************************************
* lib/lib_strcasecmp.c
*
- * Copyright (C) 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -57,8 +57,13 @@ int strcasecmp(const char *cs, const char *ct)
register signed char result;
for (;;)
{
- if ((result = toupper(*cs) - toupper(*ct++)) != 0 || !*cs++)
- break;
+ if ((result = toupper(*cs) - toupper(*ct)) != 0 || !*cs)
+ {
+ break;
+ }
+
+ cs++;
+ ct++;
}
return result;
}