Skip to content
Snippets Groups Projects
twoPlayers.h 157 B
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "board.h"

#ifndef twoplayers_h
#define twoplayers_h
void play();
bool winner();
#endif