1 /***************************************************************************
2 check.cpp - description
4 begin : Mon Sep 19 2005
5 copyright : (C) 2005 by Maurizio Monge
6 email : monge@linuz.sns.it
7 ***************************************************************************/
9 /***************************************************************************
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
16 ***************************************************************************/
20 void print_move(const Move
* m
)
22 printf("%c%c%c%c\n", X(m
->from
)+'a', Y(m
->from
)+'1',
23 X(m
->to
)+'a', Y(m
->to
)+'1');