diff options
| author | Cabergs Charles <cacharle@w-r4-p5.s19.be> | 2019-10-07 16:33:51 +0200 |
|---|---|---|
| committer | Cabergs Charles <cacharle@w-r4-p5.s19.be> | 2019-10-07 16:33:51 +0200 |
| commit | 8adeef1b50a3a819cf6525af94f1fbce62465a7e (patch) | |
| tree | 2076ffde529f8f5350515105645353f76ee1f5e9 /ft_putendl_fd.c | |
| parent | ea6d7d262950a918f1888d7b8d9f6bceb1aaf12e (diff) | |
| download | libft-8adeef1b50a3a819cf6525af94f1fbce62465a7e.tar.gz libft-8adeef1b50a3a819cf6525af94f1fbce62465a7e.tar.bz2 libft-8adeef1b50a3a819cf6525af94f1fbce62465a7e.zip | |
Added calloc and strlcpy, rename out of date
Diffstat (limited to 'ft_putendl_fd.c')
| -rw-r--r-- | ft_putendl_fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ft_putendl_fd.c b/ft_putendl_fd.c index c1ed236..d9f6d7d 100644 --- a/ft_putendl_fd.c +++ b/ft_putendl_fd.c @@ -6,13 +6,13 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:44:06 by cacharle #+# #+# */ -/* Updated: 2019/10/07 10:44:14 by cacharle ### ########.fr */ +/* Updated: 2019/10/07 13:32:37 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" -void ft_putendl_fd(char const *s, int fd) +void ft_putendl_fd(char *s, int fd) { ft_putstr_fd(s, fd); ft_putchar_fd('\n', fd); |
