diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-13 23:44:14 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-13 23:44:14 +0200 |
commit | 815f55103cadb3ac8d0dc78155605f1723f30c84 (patch) | |
tree | b9d1cfa0b9e4699ea7e8bdcb2b196dd836a22ed0 /FICS/board.c | |
parent | c44852ab9ede6181000c5a0b5237127c2c4acc70 (diff) |
Made 'styleFuncs' private
Diffstat (limited to 'FICS/board.c')
-rw-r--r-- | FICS/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/board.c b/FICS/board.c index 9bd6500..b727894 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -50,7 +50,7 @@ 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])(game_state_t *, move_t *) = { +PRIVATE int (*styleFuncs[MAX_STYLES])(game_state_t *, move_t *) = { style1, style2, style3, |