/*larry cashdollar tic tac toe
  for dave's hwk help. 11/7/2012*/

#include <stdio.h>
#include <stdlib.h>

char board[13][101];

int
main (void)
{
  int x = 0, y = 0, p1, p2, turn = 0;
  char player;
  for (x = 0; x < 13; x++)
    {
      for (y = 0; y < 101; y++)
	{
	  board[x][y] = ' ';
	}
    }
}
