-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
28 lines (24 loc) · 1.18 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
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mkhellou < [email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/22 15:09:22 by mkhellou #+# #+# */
/* Updated: 2022/12/02 12:46:04 by mkhellou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <unistd.h>
# include <signal.h>
# include <stdlib.h>
# include "libft.h"
# include "ft_printf.h"
void ft_putchar_fd(char c, int fd);
void ft_putnbr_fd(int n, int fd);
void handler(int sig);
int ft_atoi(const char *str);
void input(unsigned char *str, int pid);
#endif