27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* convert.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/31 14:57:24 by rparodi #+# #+# */
|
|
/* Updated: 2024/10/31 15:27:40 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CONVERT_H
|
|
# define CONVERT_H
|
|
|
|
# include <stdio.h>
|
|
# include <string.h>
|
|
# include <stdlib.h>
|
|
# include <unistd.h>
|
|
# include <limits.h>
|
|
# include <fcntl.h>
|
|
|
|
char *ft_itoa(int n);
|
|
int ft_atoi(const char *nptr);
|
|
long long int ft_atoll(const char *nptr);
|
|
|
|
#endif
|