diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-18 11:54:47 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-18 11:54:47 +0100 |
| commit | 676b37f963789f3d85b18ed5b3708374971b65e2 (patch) | |
| tree | ac95f340a31768139129f3e76e598692963ea274 /src/str/ft_atoi_strict.c | |
| parent | ae1412fdc283e442a0869aa7d63778449a7e5cfe (diff) | |
| download | libft-676b37f963789f3d85b18ed5b3708374971b65e2.tar.gz libft-676b37f963789f3d85b18ed5b3708374971b65e2.tar.bz2 libft-676b37f963789f3d85b18ed5b3708374971b65e2.zip | |
Added ft_getchar and fixing strtol
Diffstat (limited to 'src/str/ft_atoi_strict.c')
| -rw-r--r-- | src/str/ft_atoi_strict.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/str/ft_atoi_strict.c b/src/str/ft_atoi_strict.c index 6156b03..f12e8db 100644 --- a/src/str/ft_atoi_strict.c +++ b/src/str/ft_atoi_strict.c @@ -6,13 +6,12 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/15 10:06:29 by cacharle #+# #+# */ -/* Updated: 2020/01/15 14:09:03 by cacharle ### ########.fr */ +/* Updated: 2020/01/18 11:53:07 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" -#include <stdio.h> int ft_strict_atoi(const char *s) { char *end; |
