diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-13 23:40:10 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-13 23:40:10 +0200 |
commit | d608268a7cb9be6f7f96f5295f7d4066f79e07f2 (patch) | |
tree | 7a8ac5f4ef1945bfa8b64ed27475ce7f267b0269 /FICS/board.c | |
parent | b8f48e3604dc6ef6b089ac5ae051228d77807c4d (diff) |
Added a parameter list
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 5948052..643bbd0 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])() = { +PUBLIC int (*styleFuncs[MAX_STYLES])(game_state_t *, move_t *) = { style1, style2, style3, |