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

Unified Diff: fusl/src/ctype/islower.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/islower.c
diff --git a/fusl/src/ctype/islower.c b/fusl/src/ctype/islower.c
index 02640213e5f65bb50fb0eff0a067baca9b814794..c7e0b46daa761973faf7830f85013083cf2f213d 100644
--- a/fusl/src/ctype/islower.c
+++ b/fusl/src/ctype/islower.c
@@ -2,14 +2,12 @@
#include "libc.h"
#undef islower
-int islower(int c)
-{
- return (unsigned)c-'a' < 26;
+int islower(int c) {
+ return (unsigned)c - 'a' < 26;
}
-int __islower_l(int c, locale_t l)
-{
- return islower(c);
+int __islower_l(int c, locale_t l) {
+ return islower(c);
}
weak_alias(__islower_l, islower_l);

Powered by Google App Engine
This is Rietveld 408576698