minishell/stdme/include/me/convert/atoi.h
2024-04-28 19:59:01 +02:00

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