Skip to content

Instantly share code, notes, and snippets.

View EightAndAHalfTails's full-sized avatar

Jake Humphrey EightAndAHalfTails

  • Alcatel IP Networks
  • Harefield, London, UK
View GitHub Profile
#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 ;