blob: 618530df5aec38aa3bc5644106aebbcb841f4368 (
plain)
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
27
28
29
30
31
32
33
34
35
36
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* main.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/29 08:47:37 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/29 08:47:39 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <libft.h>
#include <minishell.h>
#include <stdlib.h>
#include <stddef.h>
#include <unistd.h>
#include <inttypes.h>
int
main(void)
{
char *arg;
int gnlret;
ft_putstr(FT_PS1);
while ((gnlret= get_next_line(STDIN_FILENO, &arg)) > 0)
{
ft_process_arg(arg);
free(arg);
ft_putstr(FT_PS1);
}
free(arg);
return (0);
}
|