Adjust 42 header and header guards to new name
authorLukas Jiriste <ljiriste@student.42prague.com>
Fri, 1 Mar 2024 09:22:59 +0000 (10:22 +0100)
committerLukas Jiriste <ljiriste@student.42prague.com>
Fri, 1 Mar 2024 09:22:59 +0000 (10:22 +0100)
This is required by the 42 Norm.

src/push_swap.h

index 2d09590e455ea415bd27e9009ab311994764b370..b8accd668075267fa4235c78c82d1ad650ddd099 100644 (file)
@@ -1,17 +1,17 @@
 /* ************************************************************************** */
 /*                                                                            */
 /*                                                        :::      ::::::::   */
-/*   checker.h                                          :+:      :+:    :+:   */
+/*   push_swap.h                                        :+:      :+:    :+:   */
 /*                                                    +:+ +:+         +:+     */
 /*   By: ljiriste <marvin@42.fr>                    +#+  +:+       +#+        */
 /*                                                +#+#+#+#+#+   +#+           */
 /*   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