15 lines
197 B
C
15 lines
197 B
C
#ifndef TIKTAKTOE_H
|
|
#define TIKTAKTOE_H
|
|
|
|
#include <ncurses.h>
|
|
#include <stdint.h>
|
|
|
|
#define GRIDSIZE 3
|
|
|
|
extern const char part;
|
|
|
|
void draw_initial_board(WINDOW*);
|
|
int start_tiktaktoe(void);
|
|
|
|
#endif
|