23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* push_swap.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/11/25 23:15:17 by apommier #+# #+# */
|
|
/* Updated: 2021/11/25 23:48:20 by apommier ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_PRINTF_H
|
|
# define FT_PRINTF_H
|
|
|
|
# include <stdio.h>
|
|
# include <unistd.h>
|
|
# include "./libft/libft.h"
|
|
|
|
int push_swap(int nbrarg, char **list);
|
|
int is_nbr(int nbrarg, char **list);
|
|
|
|
#endif |