Compare commits

..

No commits in common. "4c45a2c60361916e62c993bdaede9f9911debf0d" and "d7032849d6d92a51c15c1d5aa8b7caf9e495463d" have entirely different histories.

2 changed files with 6 additions and 36 deletions

View File

@ -6,7 +6,7 @@
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/17 13:09:08 by erey-bet #+# #+# */
/* Updated: 2023/02/21 15:38:53 by erey-bet ### ########.fr */
/* Updated: 2023/02/17 17:07:50 by erey-bet ### ########.fr */
/* */
/* ************************************************************************** */
@ -45,40 +45,11 @@ int check_argument(char *str, int *check, int i)
return (i);
}
char *conca(char **strings)
int echo(int fd, char *str)
{
int len;
char *result;
char *p;
int i;
int check;
int i;
i = -1;
while (strings[++i] != NULL)
len += strlen(strings[i]);
result = (char *) malloc(len * 2 + 1);
if (result == NULL)
return NULL;
p = result;
i = 0;
while (strings[i] != NULL)
{
ft_strncpy(p, strings[i], ft_strlen(strings[i]));
ft_strncpy(p, " ", 1);
p += strlen(strings[i]);
i++;
}
return (result);
}
int echo(int fd, char **strs)
{
int check;
int i;
char *str;
str = conca(strs);
check = 0;
i = 0;
while (is_space(str[i]))

View File

@ -6,7 +6,7 @@
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/14 13:45:30 by cchauvet #+# #+# */
/* Updated: 2023/02/21 15:43:50 by erey-bet ### ########.fr */
/* Updated: 2023/02/21 15:10:50 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
@ -21,7 +21,6 @@
# include <stdio.h>
# include <unistd.h>
# include <limits.h>
# include <string.h>
# include <readline/readline.h>
# include <readline/history.h>
# define DEBUG 0
@ -61,7 +60,7 @@ char *get_value(char *str);
char *get_key(char *str);
/* Echo */
int echo(int fd, char **strs);
int echo(int fd, char *str);
/* PWD */
int pwd(int fd);
char *get_pwd(int fd);