From 9af2885d872de9c60b11159efe0685738031096d Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 14 Feb 2020 03:46:08 +0100 Subject: Added documentation for all functions and refactored ft_strjoin_free -> ft_strjoinf --- include/libft_io.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/libft_io.h') diff --git a/include/libft_io.h b/include/libft_io.h index e1a2536..76bce17 100644 --- a/include/libft_io.h +++ b/include/libft_io.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:35:43 by cacharle #+# #+# */ -/* Updated: 2020/01/31 10:35:48 by cacharle ### ########.fr */ +/* Updated: 2020/02/14 02:23:43 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -27,6 +27,8 @@ void ft_putstr_fd(char *s, int fd); void ft_putendl_fd(char *s, int fd); void ft_putnbr_fd(int n, int fd); +char ft_getchar(void); + # ifndef FTNL_BUFFER_SIZE # define FTNL_BUFFER_SIZE 32 # endif -- cgit