diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 19:11:10 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 19:11:10 +0200 |
commit | 462e664d0fdfbe2e9eae5c7e093c5a23b202dae8 (patch) | |
tree | cff5c7b5852874c8812bfa3dc04cc8df058a2238 /libft/src/ft_itoa.c | |
parent | Some norm (diff) | |
download | 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.gz 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.bz2 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.xz 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.zst 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.zip |
Norm update
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_itoa.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libft/src/ft_itoa.c b/libft/src/ft_itoa.c index 255d0a8..2c0c14e 100644 --- a/libft/src/ft_itoa.c +++ b/libft/src/ft_itoa.c @@ -21,10 +21,12 @@ char *ft_itoa(long n) uint8_t i; i = ft_intlen(n) - 1; - if (!(s = (char*)malloc((i + 2) * sizeof(char)))) + if ((s = (char*)malloc((i + 2) * sizeof(char))) == NULL) return (NULL); - if (!n) + if (n == 0) + { s[i] = '0'; + } nb = n; if (n < 0) { |