Add the basic code structure and build system
[Project_algorithmic_C.git] / src / othello.c
diff --git a/src/othello.c b/src/othello.c
new file mode 100644 (file)
index 0000000..650efa9
--- /dev/null
@@ -0,0 +1,17 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <ncurses.h>
+
+int main() {
+    int row = 0, col = 0;
+
+    initscr();
+    getmaxyx(stdscr, row, col);
+    noecho();
+    curs_set(0);
+
+    endwin();
+
+    exit(EXIT_SUCCESS);
+}