-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput_init.c
More file actions
20 lines (18 loc) · 1010 Bytes
/
input_init.c
File metadata and controls
20 lines (18 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* input_init.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: miissa <miissa@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/06 10:10:33 by miissa #+# #+# */
/* Updated: 2026/01/06 10:22:48 by miissa ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
void input_init(t_input *input)
{
input->argc = 0;
input->argv = NULL;
input->start = 0;
}