22 lines
1 KiB
C
22 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 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
|
|
#define LIS_H
|
|
|
|
#include "me/types.h"
|
|
#include "me/vec/vec_element.h"
|
|
#include "me/vec/vec_i64.h"
|
|
|
|
t_vec_i64 lis(t_vec_element *elements);
|
|
|
|
#endif /* LIS_H */
|