aboutsummaryrefslogtreecommitdiff
path: root/libft.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-10-25 04:08:13 +0200
committerCharles <sircharlesaze@gmail.com>2019-10-25 04:08:13 +0200
commit70b928b3ee9a1de7769531edd82c0b43cf6d4d84 (patch)
treeabf169e7b2ee86fe9d3fe6d34ba131ef4b3c2752 /libft.h
parentcade8c9ab269b0981725f002fea34fda035fb707 (diff)
downloadlibft-70b928b3ee9a1de7769531edd82c0b43cf6d4d84.tar.gz
libft-70b928b3ee9a1de7769531edd82c0b43cf6d4d84.tar.bz2
libft-70b928b3ee9a1de7769531edd82c0b43cf6d4d84.zip
Added ft_itoa_base
Diffstat (limited to 'libft.h')
-rw-r--r--libft.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libft.h b/libft.h
index 1ba3dda..4a5fa36 100644
--- a/libft.h
+++ b/libft.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/07 09:45:02 by cacharle #+# #+# */
-/* Updated: 2019/10/25 03:32:43 by cacharle ### ########.fr */
+/* Updated: 2019/10/25 04:03:57 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -82,6 +82,7 @@ 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_strndup(const char *s1, size_t n);
+char *ft_itoa_base(long int n, char *base);
/*
** bonus