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); |