24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* helpers.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: akarami <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/26 18:50:47 by akarami #+# #+# */
|
|
/* Updated: 2023/03/26 18:50:55 by akarami ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef HELPERS_H
|
|
# define HELPERS_H
|
|
# define SIZE 4
|
|
|
|
void ft_putchar(char c);
|
|
int ft_strlen(char *str);
|
|
int ft_puterr(int exit_code);
|
|
void init_board(int board[SIZE][SIZE]);
|
|
void get_clues(char *input, int *border);
|
|
|
|
#endif
|