From 2a807f82b385f57bca790429e1fa7772b3942cc5 Mon Sep 17 00:00:00 2001 From: Lukas Jiriste Date: Tue, 5 Sep 2023 12:07:35 +0200 Subject: [PATCH] ft_ctoa forward declaration has not been included in libft.h in previous commit. --- libft.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libft.h b/libft.h index 9b8d3b2..c837206 100644 --- a/libft.h +++ b/libft.h @@ -6,7 +6,7 @@ /* By: ljiriste +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/08/15 12:58:15 by ljiriste #+# #+# */ -/* Updated: 2023/09/05 11:47:43 by ljiriste ### ########.fr */ +/* Updated: 2023/09/05 12:06:26 by ljiriste ### ########.fr */ /* */ /* ************************************************************************** */ @@ -57,6 +57,7 @@ char **ft_split(const char *s, char c); char *ft_itoa(int n); char *ft_itoa_base(intmax_t n, const char *base); +char *ft_ctoa(char c); char *ft_strmapi(const char *s, char (*f)(unsigned int, char)); void ft_striteri(char *s, void (*f)(unsigned int, char *)); -- 2.30.2