26 lines
1 KiB
C
26 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* push_swap.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/11/23 16:51:31 by erey-bet #+# #+# */
|
|
/* Updated: 2022/12/04 18:02:57 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PUSH_SWAP_H
|
|
# define PUSH_SWAP_H
|
|
|
|
# include <unistd.h>
|
|
# include <stdlib.h>
|
|
|
|
typedef struct s_stack
|
|
{
|
|
unsigned int *list;
|
|
int len;
|
|
} t_stack;
|
|
|
|
#endif
|