Skip to content

Commit

Permalink
fix #55
Browse files Browse the repository at this point in the history
  • Loading branch information
rask24 committed Apr 21, 2024
1 parent 4564111 commit d81598d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions include/stack_operations.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: reasuke <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/11 12:41:01 by reasuke #+# #+# */
/* Updated: 2024/04/20 15:40:33 by reasuke ### ########.fr */
/* Updated: 2024/04/21 16:30:51 by reasuke ### ########.fr */
/* */
/* ************************************************************************** */

Expand All @@ -15,17 +15,17 @@

# include "push_swap.h"

typedef void t_operation(t_stack **);
typedef void t_dual_operation(t_stack **, t_stack **);
typedef void (*t_operation)(t_stack **);
typedef void (*t_dual_operation)(t_stack **, t_stack **);

void push_stack(t_stack **p_s1, t_stack **p_s2);
void swap_stack(t_stack **p_stack);
void rotate_stack(t_stack **p_stack);
void reverse_rotate_stack(t_stack **p_stack);

void repeat_stack_operations(t_stack **p_st, int n, t_operation *op);
void repeat_stack_operations(t_stack **p_st, int n, t_operation op);
void repeat_dual_stack_operations(t_stack **p_a, t_stack **p_b, int n,
t_dual_operation *op);
t_dual_operation op);

void operate_sa(t_stack **p_a);
void operate_sb(t_stack **p_b);
Expand Down
4 changes: 2 additions & 2 deletions src/stack_operations/repeat_dual_stack_operations.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
/* By: reasuke <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/10 19:22:50 by reasuke #+# #+# */
/* Updated: 2024/04/20 15:40:46 by reasuke ### ########.fr */
/* Updated: 2024/04/21 16:27:29 by reasuke ### ########.fr */
/* */
/* ************************************************************************** */

#include "stack_operations.h"

void repeat_dual_stack_operations(t_stack **p_a, t_stack **p_b, int n,
t_dual_operation *op)
t_dual_operation op)
{
while (n--)
op(p_a, p_b);
Expand Down
4 changes: 2 additions & 2 deletions src/stack_operations/repeat_stack_operations.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
/* By: reasuke <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/10 19:22:26 by reasuke #+# #+# */
/* Updated: 2024/04/20 15:39:53 by reasuke ### ########.fr */
/* Updated: 2024/04/21 16:27:24 by reasuke ### ########.fr */
/* */
/* ************************************************************************** */

#include "stack_operations.h"

void repeat_stack_operations(t_stack **p_st, int n, t_operation *op)
void repeat_stack_operations(t_stack **p_st, int n, t_operation op)
{
while (n--)
op(p_st);
Expand Down

0 comments on commit d81598d

Please sign in to comment.