20 lines
1020 B
C
20 lines
1020 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* permutations.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: kjimenez <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/07/24 14:45:13 by kjimenez #+# #+# */
|
||
|
/* Updated: 2022/07/24 15:50:47 by kjimenez ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#ifndef PERMUTATIONS_H
|
||
|
# define PERMUTATIONS_H
|
||
|
|
||
|
int **generate_permutations(void);
|
||
|
int perm_next(int n[], int count);
|
||
|
|
||
|
#endif
|