Remove TABs

This commit is contained in:
Gregory Nutt
2015-10-04 16:01:21 -06:00
parent af086c40ff
commit bb05de4b6e
8 changed files with 10 additions and 9 deletions
+2 -2
View File
@@ -59,7 +59,7 @@ FAR void *memmove(FAR void *dest, FAR const void *src, size_t count)
s = (char*) src;
while (count--)
{
*tmp++ = *s++;
*tmp++ = *s++;
}
}
else
@@ -68,7 +68,7 @@ FAR void *memmove(FAR void *dest, FAR const void *src, size_t count)
s = (char*) src + count;
while (count--)
{
*--tmp = *--s;
*--tmp = *--s;
}
}
+2 -1
View File
@@ -52,8 +52,9 @@ int strcmp(const char *cs, const char *ct)
for (;;)
{
if ((result = *cs - *ct++) != 0 || !*cs++)
break;
break;
}
return result;
}
#endif
+1 -1
View File
@@ -67,7 +67,7 @@ char *strpbrk(const char *str, const char *charset)
/* Yes, then this position must be the first occurrence in string */
return (char*)str;
}
}
/* This character from the strings matches none of those in the charset.
* Try the next character from the string.