home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / games / volume15 / reversi2 / part02 / reversi.h < prev    next >
Text File  |  1993-01-27  |  189b  |  16 lines

  1. /*
  2.  *    reversi.h
  3.  *
  4.  *    include file for game program
  5.  */
  6.  
  7. # define    SIZE    8
  8.  
  9. typedef char    boardT[SIZE+2][SIZE+2];
  10.  
  11. typedef boardT    *boardP;
  12.  
  13. # define    EMPTY    0
  14. # define    WHITE    1
  15. # define    BLACK    -1
  16.