21 lines
1 KiB
C
21 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* target.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/29 20:30:43 by maiboyer #+# #+# */
|
|
/* Updated: 2024/01/29 20:31:28 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef TARGET_H
|
|
# define TARGET_H
|
|
|
|
# include "app/rotate.h"
|
|
# include "me/types.h"
|
|
|
|
t_rotation target(t_usize from, t_usize to, t_usize ring_size);
|
|
|
|
#endif /* TARGET_H */
|