#ifndef MOVE_H #define MOVE_H struct Location { int x; int y; }; struct Location* getPossibleMoves(struct Location pieceLocation, unsigned int chessPiece); #endif // MOVE_H