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

Unified Diff: fusl/src/misc/a64l.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/misc/a64l.c
diff --git a/fusl/src/misc/a64l.c b/fusl/src/misc/a64l.c
index 86aeefe0d5f709ab136e0a2a3824c7161ed25460..9ffc4030946812dd392ef6aa927fe6e64cff331d 100644
--- a/fusl/src/misc/a64l.c
+++ b/fusl/src/misc/a64l.c
@@ -3,24 +3,22 @@
#include <stdint.h>
static const char digits[] =
- "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
+ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
-long a64l(const char *s)
-{
- int e;
- uint32_t x = 0;
- for (e=0; e<36 && *s; e+=6, s++)
- x |= (strchr(digits, *s)-digits)<<e;
- return x;
+long a64l(const char* s) {
+ int e;
+ uint32_t x = 0;
+ for (e = 0; e < 36 && *s; e += 6, s++)
+ x |= (strchr(digits, *s) - digits) << e;
+ return x;
}
-char *l64a(long x0)
-{
- static char s[7];
- char *p;
- uint32_t x = x0;
- for (p=s; x; p++, x>>=6)
- *p = digits[x&63];
- *p = 0;
- return s;
+char* l64a(long x0) {
+ static char s[7];
+ char* p;
+ uint32_t x = x0;
+ for (p = s; x; p++, x >>= 6)
+ *p = digits[x & 63];
+ *p = 0;
+ return s;
}

Powered by Google App Engine
This is Rietveld 408576698