diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 20:59:13 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 20:59:13 +0100 |
commit | f997542cfeff645743a9f2392adbb27249844a2e (patch) | |
tree | 26f84a079b0ef2893419365c1b19169d1e7dc5fa /FICS/board.c | |
parent | 54626405956b4fb536d961dad56be70e31704d11 (diff) |
Reformatted style4()
Diffstat (limited to 'FICS/board.c')
-rw-r--r-- | FICS/board.c | 46 |
1 files changed, 33 insertions, 13 deletions
diff --git a/FICS/board.c b/FICS/board.c index 6db8fc4..583fcfd 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -399,21 +399,41 @@ PUBLIC int style3(game_state_t *b, move_t *ml) return genstyle(b, ml, wp, bp, wsqr, bsqr, top, mid, start, end, label, blabel); } -/* Experimental vt-100 ANSI board for light backgrounds */ -PUBLIC int style4(game_state_t *b, move_t *ml) +/* + * Experimental vt-100 ANSI board for light backgrounds + */ +PUBLIC int +style4(game_state_t *b, move_t *ml) { - static char *wp[] = {" ", " P ", " N ", " B ", " R ", " Q ", " K "}; - static char *bp[] = {" ", " *P", " *N", " *B", " *R", " *Q", " *K"}; - static char *wsqr = "\033[7m"; - static char *bsqr = "\033[0m"; - static char *top = "\t+------------------------+\n"; - static char *mid = ""; - static char *start = "|"; - static char *end = "\033[0m|"; - static char *label = "\t a b c d e f g h\n"; - static char *blabel = "\t h g f e d c b a\n"; + static char *wp[] = { + " ", + " P ", + " N ", + " B ", + " R ", + " Q ", + " K " + }; + static char *bp[] = { + " ", + " *P", + " *N", + " *B", + " *R", + " *Q", + " *K" + }; + static char *wsqr = "\033[7m"; + static char *bsqr = "\033[0m"; + static char *top = "\t+------------------------+\n"; + static char *mid = ""; + static char *start = "|"; + static char *end = "\033[0m|"; + static char *label = "\t a b c d e f g h\n"; + static char *blabel = "\t h g f e d c b a\n"; - return genstyle(b, ml, wp, bp, wsqr, bsqr, top, mid, start, end, label, blabel); + return genstyle(b, ml, wp, bp, wsqr, bsqr, top, mid, start, end, label, + blabel); } /* |