Files
42_INT_01_libft/srcs/ft_atol.c
2026-05-06 20:02:44 +02:00

16 lines
224 B
C

#include "libft.h"
long ft_atol(const char *str)
{
long long result = ft_atoll(str);
// clamp to long range
if (result > LONG_MAX)
return LONG_MAX;
if (result < LONG_MIN)
return LONG_MIN;
return (long)result;
}