code_snippets/c_projects/tiktaktoe/include/tiktaktoe.h

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