21 lines
1004 B
C
21 lines
1004 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* :::::::: */
|
||
|
/* ft_putstr.c :+: :+: :+: */
|
||
|
/* +:+ */
|
||
|
/* By: djonker <marvin@codam.nl> +#+ */
|
||
|
/* +#+ */
|
||
|
/* Created: 2020/11/13 04:00:47 by djonker #+# #+# */
|
||
|
/* Updated: 2023/02/07 00:40:44 by houtworm ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "../libft.h"
|
||
|
|
||
|
void ft_putstr(char *s)
|
||
|
{
|
||
|
if (!s)
|
||
|
return ((void) NULL);
|
||
|
write(1, s, ft_strlen(s));
|
||
|
}
|