aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/board.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-23 23:31:46 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-23 23:31:46 +0100
commit4c069e9832ff8782444025d460727e06816ae0c7 (patch)
tree5748170c263022f2fb33eeea62bac489ebb64cf8 /FICS/board.c
parent82fa749ad4dee34c56258446a26b69848c56d555 (diff)
Changed indentation
Diffstat (limited to 'FICS/board.c')
-rw-r--r--FICS/board.c29
1 files changed, 15 insertions, 14 deletions
diff --git a/FICS/board.c b/FICS/board.c
index 9e64178..37f9e0c 100644
--- a/FICS/board.c
+++ b/FICS/board.c
@@ -58,20 +58,21 @@ PUBLIC char *wpstring[] = {" ", "P", "N", "B", "R", "Q", "K"};
PUBLIC char *bpstring[] = {" ", "p", "n", "b", "r", "q", "k"};
PUBLIC int pieceValues[7] = {0, 1, 3, 3, 5, 9, 0};
-PUBLIC int (*styleFuncs[MAX_STYLES]) () = {
- style1,
- style2,
- style3,
- style4,
- style5,
- style6,
- style7,
- style8,
- style9,
- style10,
- style11,
- style12,
- style13
+
+PUBLIC int (*styleFuncs[MAX_STYLES])() = {
+ style1,
+ style2,
+ style3,
+ style4,
+ style5,
+ style6,
+ style7,
+ style8,
+ style9,
+ style10,
+ style11,
+ style12,
+ style13
};
PRIVATE const int mach_type = (1<<7) | (1<<8) | (1<<9) | (1<<10) | (1<<11);