From: Lukas Jiriste Date: Fri, 1 Mar 2024 09:22:59 +0000 (+0100) Subject: Adjust 42 header and header guards to new name X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=7a435b53a331b6a9c99faebd9505e4b86ebedd1b;p=42%2Fpush_swap.git Adjust 42 header and header guards to new name This is required by the 42 Norm. --- diff --git a/src/push_swap.h b/src/push_swap.h index 2d09590..b8accd6 100644 --- a/src/push_swap.h +++ b/src/push_swap.h @@ -1,17 +1,17 @@ /* ************************************************************************** */ /* */ /* ::: :::::::: */ -/* checker.h :+: :+: :+: */ +/* push_swap.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: ljiriste +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/24 12:13:51 by ljiriste #+# #+# */ -/* Updated: 2024/03/01 09:49:02 by ljiriste ### ########.fr */ +/* Updated: 2024/03/01 10:22:32 by ljiriste ### ########.fr */ /* */ /* ************************************************************************** */ -#ifndef CHECKER_H -# define CHECKER_H +#ifndef PUSH_SWAP_H +# define PUSH_SWAP_H # include "libft.h" @@ -80,4 +80,4 @@ size_t find_minind(t_stack *s); void rotate_a_to_sort(t_stacks *s); void isolate_lis_in_a(t_stacks *s, t_stack *lis); void a_sort_three_or_less(t_stacks *s); -#endif //CHECKER_H +#endif //PUSH_SWAP_H