Skip to content

Instantly share code, notes, and snippets.

@pauldwhitman
Created March 10, 2013 10:57
Part of the "Chess in C" blog post series. Introduction to macros.
#define EMPTY 0
#define KING 1
#define QUEEN 2
#define ROOK 3
#define KNIGHT 4
#define BISHOP 5
#define PAWN 6
#define BREADCRUMB 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment