This repository has been archived on 2023-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
c_piscine_rush_02/ex00/ft_utils.c
Aleksei Chubukov b5efa9ea07 unfinished
2023-12-03 23:36:55 +04:00

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);
}