42_Philosopher/philo/utils/utils.h

25 lines
1.1 KiB
C
Raw Normal View History

2023-04-13 09:00:39 -04:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/11 14:38:07 by cchauvet #+# #+# */
2023-04-25 10:30:21 -04:00
/* Updated: 2023/04/25 14:09:53 by cchauvet ### ########.fr */
2023-04-13 09:00:39 -04:00
/* */
/* ************************************************************************** */
#ifndef UTILS_H
# define UTILS_H
# include <stddef.h>
# include <stdbool.h>
bool ft_isnum(char str[]);
int ft_atoi(const char str[]);
2023-04-25 10:30:21 -04:00
void ft_putchar(char c);
void ft_putstr(char str[]);
void ft_putnum(size_t num, size_t padding);
2023-04-13 09:00:39 -04:00
#endif