21 lines
1,023 B
C
21 lines
1,023 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* atoi.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/06 14:14:00 by maiboyer #+# #+# */
|
|
/* Updated: 2024/01/11 15:36:12 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ATOI_H
|
|
# define ATOI_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_i32 me_atoi(t_const_str str);
|
|
t_i64 me_atoi_64(t_const_str str);
|
|
|
|
#endif
|