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

Unified Diff: fusl/src/ctype/isprint.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/isprint.c
diff --git a/fusl/src/ctype/isprint.c b/fusl/src/ctype/isprint.c
index 067275fa03e795ca0603ea1c99239265305c7dc9..e5b3e172e117c880d02ba941da9f47a5bacd68f0 100644
--- a/fusl/src/ctype/isprint.c
+++ b/fusl/src/ctype/isprint.c
@@ -2,14 +2,12 @@
#include "libc.h"
#undef isprint
-int isprint(int c)
-{
- return (unsigned)c-0x20 < 0x5f;
+int isprint(int c) {
+ return (unsigned)c - 0x20 < 0x5f;
}
-int __isprint_l(int c, locale_t l)
-{
- return isprint(c);
+int __isprint_l(int c, locale_t l) {
+ return isprint(c);
}
weak_alias(__isprint_l, isprint_l);

Powered by Google App Engine
This is Rietveld 408576698