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

Unified Diff: fusl/src/ctype/iswblank.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/iswblank.c
diff --git a/fusl/src/ctype/iswblank.c b/fusl/src/ctype/iswblank.c
index d9b33ef472d64366f1338fcc0caeb6318fea1f11..bbbf222a2eb6e01ea1cd513a746bcecf4e8a2a3d 100644
--- a/fusl/src/ctype/iswblank.c
+++ b/fusl/src/ctype/iswblank.c
@@ -2,14 +2,12 @@
#include <ctype.h>
#include "libc.h"
-int iswblank(wint_t wc)
-{
- return isblank(wc);
+int iswblank(wint_t wc) {
+ return isblank(wc);
}
-int __iswblank_l(wint_t c, locale_t l)
-{
- return iswblank(c);
+int __iswblank_l(wint_t c, locale_t l) {
+ return iswblank(c);
}
weak_alias(__iswblank_l, iswblank_l);

Powered by Google App Engine
This is Rietveld 408576698