1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
42-1st-piscine/ended/rush01/ex00/permutations.h

20 lines
1020 B
C
Raw Permalink Normal View History

2023-08-06 20:12:38 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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