29 lines
1.2 KiB
C
29 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* find_place.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/29 22:00:27 by maiboyer #+# #+# */
|
|
/* Updated: 2024/01/29 22:15:08 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FIND_PLACE_H
|
|
# define FIND_PLACE_H
|
|
|
|
# include "app/state.h"
|
|
# include "me/types.h"
|
|
|
|
typedef struct s_find_place_iter_state
|
|
{
|
|
t_usize current_index;
|
|
t_usize found_index;
|
|
t_i64 to_find_elem;
|
|
|
|
} t_find_place_iter_state;
|
|
|
|
t_usize find_place(t_i64 elem, t_state *state);
|
|
|
|
#endif /* FIND_PLACE_H */
|