mirror of
https://github.com/LucasCodeur/alcu.git
synced 2026-04-28 17:44:34 +02:00
FEAT: add vector, fix standard input
This commit is contained in:
+11
-7
@@ -6,20 +6,24 @@
|
||||
/* By: lud-adam <lud-adam@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2026/03/28 13:27:29 by lud-adam #+# #+# */
|
||||
/* Updated: 2026/03/28 21:41:55 by dgaillet ### ########lyon.fr */
|
||||
/* Updated: 2026/03/29 14:58:00 by lud-adam ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef ALCU_H
|
||||
# define ALCU_H
|
||||
|
||||
# include <stddef.h>
|
||||
#include "vector.h"
|
||||
|
||||
char *read_file(int fd);
|
||||
int check_input(int fd);
|
||||
void print_board(int *game_state, size_t nb_line);
|
||||
int *fill_array(int fd, int size);
|
||||
#include <stddef.h>
|
||||
#include <stdbool.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);
|
||||
void game(int *lines, int size);
|
||||
int* fill_array(t_vector* lines, int* size);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user