18 lines
971 B
C
18 lines
971 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* utils.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2023/12/02 21:56:30 by achubuko #+# #+# */
|
||
|
/* Updated: 2023/12/02 22:41:05 by achubuko ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
#include "ft_utils.h"
|
||
|
|
||
|
uint32_t ft_atoui32(char *str)
|
||
|
{
|
||
|
return (*str - '0');
|
||
|
}
|