[format] code style of rt_strcmp function

This commit is contained in:
chenchaoqun 2020-07-27 14:18:16 +08:00
parent e6b72153b4
commit 9f41cbced8
1 changed files with 4 additions and 1 deletions

View File

@ -456,7 +456,10 @@ RTM_EXPORT(rt_strncmp);
rt_int32_t rt_strcmp(const char *cs, const char *ct)
{
while (*cs && *cs == *ct)
cs++, ct++;
{
cs++;
ct++;
}
return (*cs - *ct);
}