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

Unified Diff: fusl/src/errno/strerror.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/errno/strerror.c
diff --git a/fusl/src/errno/strerror.c b/fusl/src/errno/strerror.c
index 24c94d3742d4ed013dea3ef5625bfc03fd189a05..62e225b19d25ef6c5881a01d5d9228b8fba8a9e4 100644
--- a/fusl/src/errno/strerror.c
+++ b/fusl/src/errno/strerror.c
@@ -3,35 +3,38 @@
#include "locale_impl.h"
#include "libc.h"
-#define E(a,b) ((unsigned char)a),
+#define E(a, b) ((unsigned char)a),
static const unsigned char errid[] = {
#include "__strerror.h"
};
#undef E
-#define E(a,b) b "\0"
+#define E(a, b) b "\0"
static const char errmsg[] =
#include "__strerror.h"
-;
+ ;
-char *__strerror_l(int e, locale_t loc)
-{
- const char *s;
- int i;
- /* mips has one error code outside of the 8-bit range due to a
- * historical typo, so we just remap it. */
- if (EDQUOT==1133) {
- if (e==109) e=-1;
- else if (e==EDQUOT) e=109;
- }
- for (i=0; errid[i] && errid[i] != e; i++);
- for (s=errmsg; i; s++, i--) for (; *s; s++);
- return (char *)LCTRANS(s, LC_MESSAGES, loc);
+char* __strerror_l(int e, locale_t loc) {
+ const char* s;
+ int i;
+ /* mips has one error code outside of the 8-bit range due to a
+ * historical typo, so we just remap it. */
+ if (EDQUOT == 1133) {
+ if (e == 109)
+ e = -1;
+ else if (e == EDQUOT)
+ e = 109;
+ }
+ for (i = 0; errid[i] && errid[i] != e; i++)
+ ;
+ for (s = errmsg; i; s++, i--)
+ for (; *s; s++)
+ ;
+ return (char*)LCTRANS(s, LC_MESSAGES, loc);
}
-char *strerror(int e)
-{
- return __strerror_l(e, CURRENT_LOCALE);
+char* strerror(int e) {
+ return __strerror_l(e, CURRENT_LOCALE);
}
weak_alias(__strerror_l, strerror_l);

Powered by Google App Engine
This is Rietveld 408576698