mirror of
https://github.com/LucasCodeur/alcu.git
synced 2026-04-28 17:44:34 +02:00
end of project
This commit is contained in:
+9
-9
@@ -11,19 +11,19 @@
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef ALCU_H
|
||||
# define ALCU_H
|
||||
#define ALCU_H
|
||||
|
||||
#include "vector.h"
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
char *read_file(int fd);
|
||||
bool check_input(t_vector* lines);
|
||||
void print_board(int *game_state, size_t nb_line);
|
||||
bool fill_vector(t_vector* lines, int fd);
|
||||
int ai(int *gamestate, int nb_line);
|
||||
void game(int *lines, int size);
|
||||
int* fill_array(t_vector* lines, int* size);
|
||||
char *read_file(int fd);
|
||||
bool check_input(t_vector *lines);
|
||||
void print_board(int *game_state, size_t nb_line);
|
||||
bool fill_vector(t_vector *lines, int fd);
|
||||
int ai(int *gamestate, int nb_line);
|
||||
bool game(int *lines, int size);
|
||||
int *fill_array(t_vector *lines, int *size);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user