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

Unified Diff: fusl/src/ctype/iswlower.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/iswlower.c
diff --git a/fusl/src/ctype/iswlower.c b/fusl/src/ctype/iswlower.c
index 79df44a3d64e571440825293e8b7c18a51330bc4..0dbf8386318d0e69062a77c9c70a84d06250d8e1 100644
--- a/fusl/src/ctype/iswlower.c
+++ b/fusl/src/ctype/iswlower.c
@@ -1,14 +1,12 @@
#include <wctype.h>
#include "libc.h"
-int iswlower(wint_t wc)
-{
- return towupper(wc) != wc;
+int iswlower(wint_t wc) {
+ return towupper(wc) != wc;
}
-int __iswlower_l(wint_t c, locale_t l)
-{
- return iswlower(c);
+int __iswlower_l(wint_t c, locale_t l) {
+ return iswlower(c);
}
weak_alias(__iswlower_l, iswlower_l);

Powered by Google App Engine
This is Rietveld 408576698