lazy week-end stuff B)

started conversion of functions to data structure system
still WIP
added first iteration of int parser
does not check for int overflow
This commit is contained in:
Tanguy MAZE
2019-02-23 18:35:46 +01:00
parent 26f2acfcad
commit beba6ce86f
8 changed files with 348 additions and 29 deletions

View File

@@ -6,16 +6,16 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/21 15:59:46 by tmaze #+# #+# */
/* Updated: 2019/02/21 16:06:04 by tmaze ### ########.fr */
/* Updated: 2019/02/23 15:45:30 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
void ps_push(t_stack **s1, t_stack **s2)
void ps_push(t_psdata *data, char c)
{
t_stack *tmp;
tmp = ps_stkpop(s2);
ps_stkpsh(s1, tmp);
tmp = ps_stkpop(data, (c == 'a') ? c : 'b');
ps_stkpsh(data, c, tmp);
}