38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* generic.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: lperrey <lperrey@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/10/08 09:25:35 by lperrey #+# #+# */
|
|
/* Updated: 2021/12/16 03:50:35 by lperrey ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
// pour imprimer une char ** en precisant comment separer les char *
|
|
void print_matrix(char **matrix, char *sep)
|
|
{
|
|
int i;
|
|
|
|
i = 0;
|
|
while (matrix[i])
|
|
{
|
|
printf("%s", matrix[i]);
|
|
if (matrix[i + 1])
|
|
printf("%s", sep);
|
|
fflush(stdout);
|
|
i++;
|
|
}
|
|
write(1, "\n", 1);
|
|
}
|
|
|
|
int ft_reti_perror_io(int ret, char *err_str, char *io_file)
|
|
{
|
|
ft_putstr_fd(err_str, STDERR_FILENO);
|
|
perror(io_file);
|
|
return (ret);
|
|
}
|