20 lines
1.0 KiB
C
20 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* utils.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/12/02 21:57:06 by achubuko #+# #+# */
|
|
/* Updated: 2023/12/02 23:04:09 by achubuko ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#ifndef FT_UTILS_H
|
|
# define FT_UTILS_H
|
|
# include <stddef.h>
|
|
# include <stdint.h>
|
|
|
|
uint32_t ft_atoui32(char *str);
|
|
size_t ft_strlen(char *s);
|
|
#endif
|