diff options
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -0,0 +1,38 @@ +#ifndef BOARD_H_ +#define BOARD_H_ + +#include <stdlib.h> +#include <stdio.h> +#include <stdbool.h> +#include <assert.h> +#include <time.h> + +typedef struct board board; +typedef unsigned int uint; +typedef unsigned long ulong; + +enum direction { + north, + south, + west, + east, +}; + +struct board { + uint x[4][4]; + uint points; + uint num_p; +}; + +board *new_board(); +void init_board(board*); +void free_board(board*); +bool move_possible_any(board*); +bool move_possible(board*, const int d); +void make_move(board*, const int d); +void move(board*, const int d); + +void print_board(board*); +void print_score(board*); + +#endif |