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

Unified Diff: fusl/src/locale/wcscoll.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/locale/wcscoll.c
diff --git a/fusl/src/locale/wcscoll.c b/fusl/src/locale/wcscoll.c
index 14bb8b9f9607991872e9c1861481ce8ea07df88e..b6f545363fe15340e6ce31884e6d80bc6275b012 100644
--- a/fusl/src/locale/wcscoll.c
+++ b/fusl/src/locale/wcscoll.c
@@ -4,14 +4,12 @@
#include "libc.h"
/* FIXME: stub */
-int __wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale)
-{
- return wcscmp(l, r);
+int __wcscoll_l(const wchar_t* l, const wchar_t* r, locale_t locale) {
+ return wcscmp(l, r);
}
-int wcscoll(const wchar_t *l, const wchar_t *r)
-{
- return __wcscoll_l(l, r, CURRENT_LOCALE);
+int wcscoll(const wchar_t* l, const wchar_t* r) {
+ return __wcscoll_l(l, r, CURRENT_LOCALE);
}
weak_alias(__wcscoll_l, wcscoll_l);

Powered by Google App Engine
This is Rietveld 408576698