/****************************************/
/* insert header comment here           */
/***************************************/


int main() {

/* output this:

--------------------------
Testing Pawn Moves
--------------------------

*/

checkit_int(isLegalMovePawn('b',3,'w','b',4), 1);


/* output this:

--------------------------
Testing Knight Moves
--------------------------

*/

checkit_int(isLegalMoveKnight('b',4,'c',2), 1);


/* output this:

--------------------------
Testing Bishop Moves
--------------------------

*/

checkit_int(isLegalMoveBishop('b',4,'c',5), 1);


/* output this:

--------------------------
Testing Rook Moves
--------------------------

*/

checkit_int(isLegalMoveRook('d',4,'d',7), 1);


/* output this:

--------------------------
Testing Queen Moves
--------------------------

*/

checkit_int(isLegalMoveQueen('c',5,'e',5), 1);

/* output this:

--------------------------
Testing King Moves
--------------------------

*/

checkit_int(isLegalMoveKing('e',2,'d',3), 1);




return 0;
}