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.h

20 lines
1.0 KiB
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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