aboutsummaryrefslogtreecommitdiff
path: root/src/str/ft_atoi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/str/ft_atoi.c')
-rw-r--r--src/str/ft_atoi.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/str/ft_atoi.c b/src/str/ft_atoi.c
deleted file mode 100644
index fa31407..0000000
--- a/src/str/ft_atoi.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_atoi.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2019/10/07 09:46:16 by cacharle #+# #+# */
-/* Updated: 2020/01/15 10:56:06 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libft.h"
-
-int ft_atoi(const char *str)
-{
- return ((int)ft_strtol(str, (char**)NULL, 10));
-}