Remove debug stuff
Closed this issue · 1 comments
SrVariable commented
They're located in:
- include/push_swap.h
# define PRINT_A ft_printf("Stack A\n");\
print_stack(info->stack[A]);
# define PRINT_B ft_printf("Stack B\n");\
print_stack(info->stack[B]);
...
// <-- Debug --> //
void print_stack(t_stack *stack);
void print_info(t_info info);
- src/debug (Just remove the directory)
SrVariable commented
Fixed 9314a00