-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathis_empty_array.c
More file actions
20 lines (18 loc) · 1011 Bytes
/
Copy pathis_empty_array.c
File metadata and controls
20 lines (18 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* is_empty_array.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nkawaguc <nkawaguc@student.42tokyo.jp> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/14 14:25:59 by nkawaguc #+# #+# */
/* Updated: 2024/10/14 14:47:15 by nkawaguc ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
int is_empty_array(int argc)
{
if (argc < VALID_ARGC_MIN)
return (TRUE);
return (FALSE);
}