summaryrefslogtreecommitdiffstats
path: root/src/ft_echo.c
blob: 1ca8fc2b23e2261d0bd9dd146e6ee4ed0862000f (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
37
38
39
40
/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   ft_echo.c                                        .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2019/11/01 18:46:54 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2019/11/01 18:46:55 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include <libft.h>
#include <minishell.h>
#include <inttypes.h>

int
ft_echo(char **com, uint8_t n)
{
	uint8_t i;
	int fd;

	i = 1;
	fd = 1;
	if (!com[1])
		ft_putendl_fd("", fd);
	else if (!ft_strncmp(com[1], "-n", ft_strlen(com[1])))
		i = 2;
	while (i < n)
	{
		ft_putstr_fd(ft_strtrim(com[i], "\""), fd);
		if (i != n - 1)
			ft_putchar_fd(' ', fd);
		i++;
	}
	if (ft_strncmp(com[1], "-n", ft_strlen(com[1])))
		ft_putchar_fd('\n', fd);
	return (0);
}