diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-03-31 03:11:49 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-03-31 03:11:49 +0200 |
commit | 7a6bdc1d305aa18e91cf3d8d59ee900d64b066df (patch) | |
tree | c7f172018658c4969e4177cf1b966b479715601d /FICS | |
parent | 211dfccdede2ff485e4e37b15236bf7d4eaca818 (diff) |
Made 'styleFuncs' private and added a parameter list
Diffstat (limited to 'FICS')
-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 c984033..dfb30df 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -54,7 +54,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])() = { +PRIVATE int (*styleFuncs[MAX_STYLES])(game_state_t *, move_t *) = { style1, style2, style3, |