From e7729f8ff4275602ff42aa102d877539ace7860b Mon Sep 17 00:00:00 2001 From: Sabina Grisi Date: Fri, 9 Feb 2024 01:23:29 +0100 Subject: [PATCH] Initial commit --- src/TicTacToe.c | 2 ++ src/TicTacToe.h | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 src/TicTacToe.c create mode 100644 src/TicTacToe.h diff --git a/src/TicTacToe.c b/src/TicTacToe.c new file mode 100644 index 0000000..0852bce --- /dev/null +++ b/src/TicTacToe.c @@ -0,0 +1,2 @@ +#include +#include "TicTacToe.h" \ No newline at end of file diff --git a/src/TicTacToe.h b/src/TicTacToe.h new file mode 100644 index 0000000..64933e5 --- /dev/null +++ b/src/TicTacToe.h @@ -0,0 +1,4 @@ +#ifndef TICTACTOE_H +#define TICTACTOE_H + +#endif // TICTACTOE_H \ No newline at end of file