diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-01-04 23:13:29 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-01-04 23:13:29 +0100 |
commit | 81050a1878b6ac047b1c49431a454f32007c085a (patch) | |
tree | 7f5707cae685af28ccbf4c6bbd126cc5c74b511a | |
parent | 6c3bce8a4bd4629d29110073f3b5c473d69f5c76 (diff) |
Reformatted alg_is_move()
-rw-r--r-- | FICS/algcheck.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/FICS/algcheck.c b/FICS/algcheck.c index 771351b..10940d5 100644 --- a/FICS/algcheck.c +++ b/FICS/algcheck.c @@ -187,11 +187,12 @@ nomatch:; return MS_NOTMOVE; } -PUBLIC int alg_is_move(char *mstr) +PUBLIC int +alg_is_move(char *mstr) { - int piece, ff, fr, tf, tr, bc; + int piece, ff, fr, tf, tr, bc; - return get_move_info(mstr, &piece, &ff, &fr, &tf, &tr, &bc); + return get_move_info(mstr, &piece, &ff, &fr, &tf, &tr, &bc); } /* We already know it is algebraic, get the move squares */ |