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

Unified Diff: fusl/src/ctype/isblank.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/isblank.c
diff --git a/fusl/src/ctype/isblank.c b/fusl/src/ctype/isblank.c
index 299120e96df19f4f1ad17ced9d45cb68c423b0d0..87ad727320f99d6b7255027a53fe9cbf97b10c5b 100644
--- a/fusl/src/ctype/isblank.c
+++ b/fusl/src/ctype/isblank.c
@@ -1,14 +1,12 @@
#include <ctype.h>
#include "libc.h"
-int isblank(int c)
-{
- return (c == ' ' || c == '\t');
+int isblank(int c) {
+ return (c == ' ' || c == '\t');
}
-int __isblank_l(int c, locale_t l)
-{
- return isblank(c);
+int __isblank_l(int c, locale_t l) {
+ return isblank(c);
}
weak_alias(__isblank_l, isblank_l);

Powered by Google App Engine
This is Rietveld 408576698