[misc] Update .clang-format style

This commit is contained in:
Kuba Szczodrzyński
2025-05-28 15:50:18 +02:00
parent 3054db9d9b
commit 6bf549b104
12 changed files with 262 additions and 262 deletions

View File

@@ -5,17 +5,17 @@
#include <libretiny.h>
// https://stackoverflow.com/a/3437484
#define MAX(a, b) \
({ \
__typeof__(a) _a = (a); \
__typeof__(b) _b = (b); \
_a > _b ? _a : _b; \
#define MAX(a, b) \
({ \
__typeof__(a) _a = (a); \
__typeof__(b) _b = (b); \
_a > _b ? _a : _b; \
})
#define MIN(a, b) \
({ \
__typeof__(a) _a = (a); \
__typeof__(b) _b = (b); \
_a < _b ? _a : _b; \
#define MIN(a, b) \
({ \
__typeof__(a) _a = (a); \
__typeof__(b) _b = (b); \
_a < _b ? _a : _b; \
})
/**