diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-19 14:40:37 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-19 14:40:37 +0200 |
commit | c1f8a414ad01c4c2863ebef3b81d79f3c40b2da5 (patch) | |
tree | 4b166b7df87a7a896fcd78637828ed46e38b8566 /libft/src/ft_itoa.c | |
parent | Ready to merge (diff) | |
download | 42-minishell-c1f8a414ad01c4c2863ebef3b81d79f3c40b2da5.tar.gz 42-minishell-c1f8a414ad01c4c2863ebef3b81d79f3c40b2da5.tar.bz2 42-minishell-c1f8a414ad01c4c2863ebef3b81d79f3c40b2da5.tar.xz 42-minishell-c1f8a414ad01c4c2863ebef3b81d79f3c40b2da5.tar.zst 42-minishell-c1f8a414ad01c4c2863ebef3b81d79f3c40b2da5.zip |
Added retval as an option for the prompt with \?
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_itoa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_itoa.c b/libft/src/ft_itoa.c index e10fbab..255d0a8 100644 --- a/libft/src/ft_itoa.c +++ b/libft/src/ft_itoa.c @@ -14,8 +14,7 @@ #include <inttypes.h> #include <stdlib.h> -char - *ft_itoa(long n) +char *ft_itoa(long n) { char *s; long nb; |