This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#include <string.h> | |
/*Type Definitions*/ | |
typedef enum oxb {nought, cross, blank} oxb_t ; | |
typedef enum mode {vsAI, vsHuman} gamemode_t ; | |
typedef enum bool {false, true} boolean ; |
NewerOlder