Initial commit
This commit is contained in:
21
philo_one/srcs/utils/utils.h
Executable file
21
philo_one/srcs/utils/utils.h
Executable file
@@ -0,0 +1,21 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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
|
||||
Reference in New Issue
Block a user