-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
27 lines (23 loc) · 1.15 KB
/
minitalk.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: slouham <slouham@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/08 13:22:29 by slouham #+# #+# */
/* Updated: 2024/05/22 11:04:15 by slouham ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <signal.h>
# include <stdlib.h> // for exit()
# include <unistd.h>
int ft_strlen(const char *s);
int ft_isdigit(int c);
long ft_atoi(const char *str);
int ft_putchar(char c);
int ft_putstr(char *s);
int ft_putnbr(int n);
#endif