//---------------------------------------------------------//
//                                                         //
//  File:     AIProg1.cpp                                  //
//  Contents: An implementation of depth-first and         //
//             breadth-first search strategies for a       //
//             game of Tic-tac-toe                         //
//  Author:   Ben Younkins                                 //
//  Project:  Program Assignment #1                        //
//  Date Due: October 6, 1999                              //
//  Class:    CSC 415, Fall 1999                           //
//  Help:                                                  //
//---------------------------------------------------------//

// Creates "board" type, where 0 == blank, 1 == x, 2 == o
enum board {blank, x, o};
typedef enum board board;

int main(void)
{

 return 0;
}