/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* permutations.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: kjimenez +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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