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

Unified Diff: fusl/src/ctype/iswupper.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/ctype/iswupper.c
diff --git a/fusl/src/ctype/iswupper.c b/fusl/src/ctype/iswupper.c
index 6e1e029c4902936cc38a3bfba5b22d7d68d84ffc..850a6e0320d6ae1c705c2c2838cce7e98d2ce7eb 100644
--- a/fusl/src/ctype/iswupper.c
+++ b/fusl/src/ctype/iswupper.c
@@ -1,14 +1,12 @@
#include <wctype.h>
#include "libc.h"
-int iswupper(wint_t wc)
-{
- return towlower(wc) != wc;
+int iswupper(wint_t wc) {
+ return towlower(wc) != wc;
}
-int __iswupper_l(wint_t c, locale_t l)
-{
- return iswupper(c);
+int __iswupper_l(wint_t c, locale_t l) {
+ return iswupper(c);
}
weak_alias(__iswupper_l, iswupper_l);

Powered by Google App Engine
This is Rietveld 408576698