23 lines
1.2 KiB
C
23 lines
1.2 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* checks.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: kjimenez <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/07/24 14:45:31 by kjimenez #+# #+# */
|
||
|
/* Updated: 2022/07/24 15:14:11 by kjimenez ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#ifndef CHECKS_H
|
||
|
# define CHECKS_H
|
||
|
|
||
|
int left_to_right(int **arr_answer, int row, int expected);
|
||
|
int up_to_down(int **arr_answer, int col, int expected);
|
||
|
int right_to_left(int **arr_answer, int row, int expected);
|
||
|
int down_to_up(int **arr_answer, int col, int expected);
|
||
|
int check_duplicates(int **board);
|
||
|
|
||
|
#endif
|