Add the basic code structure and build system
[Project_algorithmic_C.git] / src / othello.c
CommitLineData
480acfeb
JB
1#include <stdlib.h>
2#include <stdio.h>
3#include <string.h>
4#include <ncurses.h>
5
6int main() {
7 int row = 0, col = 0;
8
9 initscr();
10 getmaxyx(stdscr, row, col);
11 noecho();
12 curs_set(0);
13
14 endwin();
15
16 exit(EXIT_SUCCESS);
17}