39 dst->n[i] = dst->n[i - 1];
40 dst->n[0] = src->n[0];
43 while (i++ < src->len)
44 src->n[i - 1] = src->n[i];
57 if (!
_push(&stack[mode], &stack[1 - mode]))
int ft_printf(const char *format,...)
Prints and formats a variable set of arguments.
void push(t_stack *stack, int mode)
Push the first element from stack 1 or 2 into the other stack, depending on whether mode is set to 0 ...
static int _push(t_stack *src, t_stack *dst)
Push the first element out of src out and into dst.