Skip to content
Snippets Groups Projects
Commit 55e95bf1 authored by sabrina.lapaire's avatar sabrina.lapaire
Browse files

Modifier board.h

parent 40841fd4
Branches
No related tags found
No related merge requests found
#include <stdio.h>
#include <stdlib.h>
#ifndef board_h
#define board_h
enum state{Croix, Cercle, Vide};
struct board{
......@@ -9,4 +11,8 @@ struct board{
enum state **data;
};
void init(int col, int line);
\ No newline at end of file
struct board create_board(int col, int line);
void init_board(struct board *board);
void print_game(struct board *board);
void free_board(struct board *board);
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment