push_swap/include/app/lis.h

23 lines
1 KiB
C
Raw Normal View History

2024-01-11 21:28:36 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* lis.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/11 19:03:30 by maiboyer #+# #+# */
/* Updated: 2024/01/11 20:50:43 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIS_H
2024-01-23 13:19:18 +01:00
# define LIS_H
2024-01-11 21:28:36 +01:00
2024-01-23 13:19:18 +01:00
# include "me/types.h"
2024-01-29 22:45:54 +01:00
# include "me/vec/vec_i64.h"
2024-01-23 13:19:18 +01:00
# include "me/vec/vec_i64.h"
2024-01-11 21:28:36 +01:00
2024-01-29 22:45:54 +01:00
t_vec_i64 lis(t_vec_i64 *elements);
2024-01-11 21:28:36 +01:00
#endif /* LIS_H */