Initial commit

This commit is contained in:
2026-01-09 15:45:59 +01:00
commit 2dbcbac9ef
43 changed files with 2547 additions and 0 deletions

21
philo_one/srcs/utils/utils.h Executable file
View 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