Skip to content

Commit

Permalink
adding cost at structure
Browse files Browse the repository at this point in the history
  • Loading branch information
biralavor committed Jun 6, 2024
1 parent 3f71d34 commit 00aa7f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion program_to_test/headers/push_swap.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: umeneses <umeneses@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/08 15:23:33 by umeneses #+# #+# */
/* Updated: 2024/06/06 13:00:25 by umeneses ### ########.fr */
/* Updated: 2024/06/06 17:29:34 by umeneses ### ########.fr */
/* */
/* ************************************************************************** */

Expand All @@ -19,6 +19,7 @@
typedef struct s_stack
{
int nbr;
int cost;
struct s_stack *prev;
struct s_stack *next;
} t_stack;
Expand Down

0 comments on commit 00aa7f2

Please sign in to comment.