Further reduced differences and include all identical msvcrt targets in crtdll makefile.
[reactos.git] / reactos / lib / msvcrt / string / strcmp.c
index 9a0b8e7..52d3448 100644 (file)
@@ -2,7 +2,7 @@
 #include <msvcrt/string.h>
 
 
-int strcmp(const char *s1, const char *s2)
+int strcmp(const char* s1, const char* s2)
 {
   while (*s1 == *s2)
   {
@@ -11,5 +11,5 @@ int strcmp(const char *s1, const char *s2)
     s1++;
     s2++;
   }
-  return *(unsigned const char *)s1 - *(unsigned const char *)(s2);
+  return *(unsigned const char*)s1 - *(unsigned const char*)(s2);
 }