mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 19:36:50 +01:00
24 lines
1.0 KiB
C
24 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putstr.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/10/31 11:45:55 by adjoly #+# #+# */
|
|
/* Updated: 2024/04/27 17:24:56 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../../libft.h"
|
|
|
|
int ft_putstr_p(char *s)
|
|
{
|
|
if (s == NULL)
|
|
{
|
|
write(1, "(null)", 6);
|
|
return (6);
|
|
}
|
|
return (write(1, s, ft_strlen(s)));
|
|
}
|