23 lines
1.0 KiB
C
23 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* put_error_cd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/01/26 22:18:09 by tmaze #+# #+# */
|
|
/* Updated: 2020/01/26 22:18:24 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
void *put_error_cd(char *file, char *msg)
|
|
{
|
|
ft_putstr("cd: ");
|
|
ft_putstr(file);
|
|
ft_putstr(": ");
|
|
ft_putendl(msg);
|
|
return (NULL);
|
|
}
|