-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate.c
23 lines (21 loc) · 1.03 KB
/
validate.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* validate.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ioulkhir <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/06 16:18:35 by ioulkhir #+# #+# */
/* Updated: 2025/01/07 10:04:55 by ioulkhir ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
char validate_args(int ac, char **av)
{
// validate input data
// integers
// no dup
return (NO_ERR);
return (ERR);
av[ac - 1] = 0;
}