home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Games / NeXTGo-3.0-MIS / initmark.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-06  |  490 b   |  28 lines

  1. #include "comment.header"
  2.  
  3. /* $Id: initmark.c,v 1.3 1997/07/06 19:35:02 ergo Exp $ */
  4.  
  5. /*
  6.  * $Log: initmark.c,v $
  7.  * Revision 1.3  1997/07/06 19:35:02  ergo
  8.  * actual version
  9.  *
  10.  * Revision 1.2  1997/05/04 18:57:07  ergo
  11.  * added time control for moves
  12.  *
  13.  */
  14.  
  15. extern unsigned char ma[19][19];
  16. extern int MAXX, MAXY;
  17.  
  18. void initmark()
  19. /* initialize all markings with zero */
  20. {
  21. int i, j;
  22.  
  23.   for (i = 0; i < MAXX; i++)
  24.     for (j = 0; j < MAXY; j++)
  25.       ma[i][j] = 0;
  26. }  /* end initmark */
  27.  
  28.