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

Unified Diff: fusl/src/ctype/iswgraph.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/iswgraph.c
diff --git a/fusl/src/ctype/iswgraph.c b/fusl/src/ctype/iswgraph.c
index 0ea5ca3a4d57ea52c08ea53ea78df5e6b17c00d9..77f3576d66f7a07e7341b3305df28de9ed5bb9e5 100644
--- a/fusl/src/ctype/iswgraph.c
+++ b/fusl/src/ctype/iswgraph.c
@@ -1,15 +1,13 @@
#include <wctype.h>
#include "libc.h"
-int iswgraph(wint_t wc)
-{
- /* ISO C defines this function as: */
- return !iswspace(wc) && iswprint(wc);
+int iswgraph(wint_t wc) {
+ /* ISO C defines this function as: */
+ return !iswspace(wc) && iswprint(wc);
}
-int __iswgraph_l(wint_t c, locale_t l)
-{
- return iswgraph(c);
+int __iswgraph_l(wint_t c, locale_t l) {
+ return iswgraph(c);
}
weak_alias(__iswgraph_l, iswgraph_l);

Powered by Google App Engine
This is Rietveld 408576698