diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-09-14 16:01:13 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-09-14 16:01:13 +0200 |
| commit | 3133f0d4d640abd62287187d13d380d03cce00a7 (patch) | |
| tree | 1c1f9c83047559aa543b0839d33a945c38a13649 /include/libft_str.h | |
| parent | 50876fe6b9e369d6b51bac9fa62b790ef5bda9d7 (diff) | |
| download | libft-3133f0d4d640abd62287187d13d380d03cce00a7.tar.gz libft-3133f0d4d640abd62287187d13d380d03cce00a7.tar.bz2 libft-3133f0d4d640abd62287187d13d380d03cce00a7.zip | |
Added ft_itoa_cpy
Diffstat (limited to 'include/libft_str.h')
| -rw-r--r-- | include/libft_str.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libft_str.h b/include/libft_str.h index 20545bc..816cb68 100644 --- a/include/libft_str.h +++ b/include/libft_str.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:39:22 by cacharle #+# #+# */ -/* Updated: 2020/06/12 11:46:12 by charles ### ########.fr */ +/* Updated: 2020/09/14 15:57:44 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -63,6 +63,7 @@ char **ft_split(char const *s, char c); char **ft_splitf(char *s, char c); int ft_strcount(char *str, char c); char *ft_itoa(int n); +char *ft_itoa_cpy(char *dst, int n); int ft_atoi_strict(const char *s); long ft_strtol(const char *s, char **endptr, int base); int ft_strcasecmp(const char *s1, const char *s2); |
