print_board

This commit is contained in:
2026-03-28 16:28:18 +01:00
parent fcebe20598
commit 7140a17dab
5 changed files with 47 additions and 2 deletions
+4 -1
View File
@@ -11,9 +11,12 @@
/* ************************************************************************** */
#ifndef ALCU_H
# define ALCU_H
#define ALCU_H
#include <stddef.h>
char *read_file(int fd);
int check_input(int fd);
void print_board(int *game_state, size_t nb_line);
#endif