-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
22 lines (20 loc) · 1.06 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gvardaki <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/27 11:24:33 by gvardaki #+# #+# */
/* Updated: 2023/10/02 08:53:15 by gvardaki ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <unistd.h>
# include <signal.h>
# include <stdlib.h>
void ft_putnbr(long nbr);
size_t ft_strlen(const char *s);
int ft_atoi(char *str);
#endif