libft
ft_putendl.c
Go to the documentation of this file.
1 /* ************************************************************************** */
3 /* */
4 /* ::: :::::::: */
5 /* ft_putendl.c :+: :+: :+: */
6 /* +:+ +:+ +:+ */
7 /* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8 /* +#+#+#+#+#+ +#+ */
9 /* Created: 2019/09/05 13:51:34 by unite #+# #+# */
10 /* Updated: 2020/07/16 02:54:35 by unite ### ########.fr */
11 /* */
12 /* ************************************************************************** */
13 
14 #include "libft.h"
15 
21 void ft_putendl(char const *s)
22 {
23  ft_putendl_fd(s, 1);
24 }
ft_putendl_fd
void ft_putendl_fd(char const *s, int fd)
Writes a string to a file descriptor followed by a newline.
Definition: ft_putendl_fd.c:22
libft.h
ft_putendl
void ft_putendl(char const *s)
Writes a string to the standard output followed by a newline.
Definition: ft_putendl.c:21