ft_ctoa forward declaration has not been included in libft.h in previous commit.
authorLukas Jiriste <ljiriste@student.42prague.com>
Tue, 5 Sep 2023 10:07:35 +0000 (12:07 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Tue, 5 Sep 2023 10:07:35 +0000 (12:07 +0200)
libft.h

diff --git a/libft.h b/libft.h
index 9b8d3b255256f0b3c7cf156cbb3830e519177141..c837206e84007406a48bd8778e95a28ebb9c8510 100644 (file)
--- a/libft.h
+++ b/libft.h
@@ -6,7 +6,7 @@
 /*   By: ljiriste <marvin@42.fr>                    +#+  +:+       +#+        */
 /*                                                +#+#+#+#+#+   +#+           */
 /*   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 *));