添加边框

This commit is contained in:
2025-12-20 20:22:41 +08:00
parent abc1979c04
commit 364a00fb7c
8 changed files with 58 additions and 6 deletions

View File

@@ -87,3 +87,8 @@ static inline void logger(const char *format, ...) {
#else
#define logger(format, ...) printf(format, ##__VA_ARGS__)
#endif
#ifdef MAX
#undef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif