20 lines
999 B
C
20 lines
999 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_convert.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/02 17:06:51 by tischmid #+# #+# */
|
|
/* Updated: 2023/04/02 18:41:32 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_CONVERT_H
|
|
# define FT_CONVERT_H
|
|
|
|
int ft_atoi(char *str);
|
|
int ft_itoa(char *buf, int nb)
|
|
|
|
#endif
|