mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-08 04:08:32 +00:00
Rerun clang-format on the repo (#1217)
🚨 clang-format changes output per version!
This is with version 19.0.0. The modifications seem to be fixing the old
version’s errors - mainly involving omitted whitespace around binary ops
and inserted whitespace between goto labels and colons (if followed by a
curly brace.)
Also fixes a few mistakes made by e.g. someone (ahem) forgetting to pass
his ctl/string.h modifications through it.
We should add this to .git-blame-ignore-revs once we have its final hash
on master.
This commit is contained in:
parent
8e37ee2598
commit
89fc95fefd
38 changed files with 139 additions and 122 deletions
|
@ -9,7 +9,7 @@ COSMOPOLITAN_C_START_
|
|||
|
||||
#define LO(x) (int)(x)
|
||||
#define HI(x) (int)((x) >> 32)
|
||||
#define MASK(x) ((x)-1u)
|
||||
#define MASK(x) ((x) - 1u)
|
||||
#define ROR(x, k) ((unsigned)(x) >> k | ((unsigned)(x) << (32 - k)))
|
||||
#define MAKE(l, h) (((unsigned)(l)) | (dword)(h) << 32)
|
||||
#define SHAD(i) g_dispatch[(i) & (BANE | MASK(BANE))]
|
||||
|
|
|
@ -49,14 +49,15 @@ long unsharp(long cn, long yw, long xw, unsigned char img[cn][yw][xw], long yn,
|
|||
}
|
||||
if (y < yn) {
|
||||
for (x = 0; x < xn; ++x) {
|
||||
(*t)[y % 3][x] = CONVOLVE5X5(/* clang-format off */
|
||||
(*t)[y % 3][x] =
|
||||
CONVOLVE5X5(/* clang-format off */
|
||||
7, (-1 / 256.), img[c],
|
||||
1, 4, 6, 4, 1,
|
||||
4, 16, 24, 16, 4,
|
||||
6, 24,-476, 24, 6,
|
||||
4, 16, 24, 16, 4,
|
||||
1, 4, 6, 4, 1
|
||||
/* clang-format on */);
|
||||
/* clang-format on */);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -225,10 +225,10 @@ static char16_t statusline16[256];
|
|||
#define GODOWN(x) ((x) << 8)
|
||||
#define GORIGHT(x) (((x) & ~RIGHT) << 1)
|
||||
#define GOLEFT(x) (((x) & ~LEFT) >> 1)
|
||||
#define LEFTMOST(x) ((x)&LEFT)
|
||||
#define RIGHTMOST(x) ((x)&RIGHT)
|
||||
#define TOPMOST(x) ((x)&TOP)
|
||||
#define BOTMOST(x) ((x)&BOTTOM)
|
||||
#define LEFTMOST(x) ((x) & LEFT)
|
||||
#define RIGHTMOST(x) ((x) & RIGHT)
|
||||
#define TOPMOST(x) ((x) & TOP)
|
||||
#define BOTMOST(x) ((x) & BOTTOM)
|
||||
|
||||
#define ADD(X) \
|
||||
do { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue