22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* utils.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2023/04/11 14:38:07 by cchauvet #+# #+# */
|
||
|
/* Updated: 2023/04/11 14:46:12 by cchauvet ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#ifndef UTILS_H
|
||
|
# define UTILS_H
|
||
|
# include <stddef.h>
|
||
|
# include <stdbool.h>
|
||
|
|
||
|
bool ft_isnum(char str[]);
|
||
|
int ft_atoi(const char str[]);
|
||
|
|
||
|
#endif
|