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

Unified Diff: fusl/src/ctype/wctrans.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/wctrans.c
diff --git a/fusl/src/ctype/wctrans.c b/fusl/src/ctype/wctrans.c
index b1b1265481c7d2714365537575b2d8152d033d17..c2c532d553fe10c068ddf6f7c30ccb5be546b9ce 100644
--- a/fusl/src/ctype/wctrans.c
+++ b/fusl/src/ctype/wctrans.c
@@ -2,28 +2,28 @@
#include <string.h>
#include "libc.h"
-wctrans_t wctrans(const char *class)
-{
- if (!strcmp(class, "toupper")) return (wctrans_t)1;
- if (!strcmp(class, "tolower")) return (wctrans_t)2;
- return 0;
+wctrans_t wctrans(const char* class) {
+ if (!strcmp(class, "toupper"))
+ return (wctrans_t)1;
+ if (!strcmp(class, "tolower"))
+ return (wctrans_t)2;
+ return 0;
}
-wint_t towctrans(wint_t wc, wctrans_t trans)
-{
- if (trans == (wctrans_t)1) return towupper(wc);
- if (trans == (wctrans_t)2) return towlower(wc);
- return wc;
+wint_t towctrans(wint_t wc, wctrans_t trans) {
+ if (trans == (wctrans_t)1)
+ return towupper(wc);
+ if (trans == (wctrans_t)2)
+ return towlower(wc);
+ return wc;
}
-wctrans_t __wctrans_l(const char *s, locale_t l)
-{
- return wctrans(s);
+wctrans_t __wctrans_l(const char* s, locale_t l) {
+ return wctrans(s);
}
-wint_t __towctrans_l(wint_t c, wctrans_t t, locale_t l)
-{
- return towctrans(c, t);
+wint_t __towctrans_l(wint_t c, wctrans_t t, locale_t l) {
+ return towctrans(c, t);
}
weak_alias(__wctrans_l, wctrans_l);

Powered by Google App Engine
This is Rietveld 408576698