53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_utils.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/12/02 21:56:30 by achubuko #+# #+# */
|
|
/* Updated: 2023/12/03 21:58:36 by achubuko ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#include "ft_utils.h"
|
|
|
|
t_dec ft_atoui32(char *str)
|
|
{
|
|
t_dec dec;
|
|
|
|
dec.significant = 0;
|
|
dec.base = 1;
|
|
while (*str)
|
|
{
|
|
}
|
|
return (dec);
|
|
}
|
|
|
|
size_t ft_strlen(char *s)
|
|
{
|
|
size_t l;
|
|
|
|
l = 0;
|
|
while (*s++)
|
|
l++;
|
|
return (l);
|
|
}
|
|
|
|
int ft_str_is_numeric(char *str)
|
|
{
|
|
int i;
|
|
|
|
i = 0;
|
|
if (str[i] == '\0')
|
|
return (0);
|
|
if (str[i] == '-')
|
|
return (-1);
|
|
while (str[i] != '\0')
|
|
{
|
|
if (str[i] < '0' || str[i] > '9')
|
|
return (0);
|
|
i++;
|
|
}
|
|
return (1);
|
|
}
|