mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
Remove TABs
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -52,8 +52,9 @@ int strcmp(const char *cs, const char *ct)
|
||||
for (;;)
|
||||
{
|
||||
if ((result = *cs - *ct++) != 0 || !*cs++)
|
||||
break;
|
||||
break;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user