Răsfoiți Sursa

Merge pull request #3777 from ErnestChen1/strcmp0727

[format] code style of rt_strcmp function
Bernard Xiong 4 ani în urmă
părinte
comite
18d1683092
1 a modificat fișierele cu 4 adăugiri și 1 ștergeri
  1. 4 1
      src/kservice.c

+ 4 - 1
src/kservice.c

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