-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchecker.h
26 lines (21 loc) · 1.16 KB
/
checker.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* checker.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hameur <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/25 18:25:48 by hameur #+# #+# */
/* Updated: 2022/06/26 14:24:22 by hameur ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CHECKER_H
# define CHECKER_H
# include <unistd.h>
# include <stdio.h>
# include "push_swap.h"
# include "get_next_line/get_next_line.h"
void read_instructions(t_stack **s_a, t_stack **s_b, char *arg);
int ft_strcmp(char *s1, char *s2);
void fct(t_stack **s_a, t_stack **s_b);
#endif