Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Unified Diff: fusl/src/string/bcmp.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/src/string/bcmp.c
diff --git a/fusl/src/string/bcmp.c b/fusl/src/string/bcmp.c
index 87c6007ee3ccf47902a847d1496bf31508222cef..b1a0b3c4ebd383e1e75d9f0252273388f8a20e72 100644
--- a/fusl/src/string/bcmp.c
+++ b/fusl/src/string/bcmp.c
@@ -2,7 +2,6 @@
#include <string.h>
#include <strings.h>
-int bcmp(const void *s1, const void *s2, size_t n)
-{
- return memcmp(s1, s2, n);
+int bcmp(const void* s1, const void* s2, size_t n) {
+ return memcmp(s1, s2, n);
}

Powered by Google App Engine
This is Rietveld 408576698