-
Notifications
You must be signed in to change notification settings - Fork 12
/
ft_putendl.c
27 lines (24 loc) · 1.11 KB
/
ft_putendl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apuchill <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/27 20:54:49 by apuchill #+# #+# */
/* Updated: 2020/10/30 19:56:35 by apuchill ### ########.fr */
/* */
/* ************************************************************************** */
/*
** LIBRARY: N/A
** SYNOPSIS: output string to stdout with newline
**
** DESCRIPTION:
** Outputs the string ’s’ to stdout, followed by a newline.
*/
#include "libft.h"
void ft_putendl(char *s)
{
ft_putstr(s);
ft_putchar('\n');
}