22 lines
1.1 KiB
C
Executable File
22 lines
1.1 KiB
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* utils.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: lejulien <lejulien@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/04/03 15:42:26 by lejulien #+# #+# */
|
|
/* Updated: 2021/04/15 10:54:39 by lejulien ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef UTILS_H
|
|
# define UTILS_H
|
|
|
|
int ft_atoi(char *str);
|
|
unsigned long int ft_atouli(char *str);
|
|
char *ft_itoa(int n);
|
|
char *ft_ulitoa(unsigned long int n);
|
|
int ft_strcmp(char *s1, char *s2);
|
|
#endif
|