-
Notifications
You must be signed in to change notification settings - Fork 0
/
minitalk.h
executable file
·27 lines (23 loc) · 1.13 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: snara </var/mail/snara> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/27 21:49:52 by snara #+# #+# */
/* Updated: 2021/05/28 11:38:55 by subaru ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <signal.h>
# include <unistd.h>
# include <stdlib.h>
# include <limits.h>
# include <stdio.h>
# define EOT 4
int ft_puts(char *s, int fd);
int ft_putnbr_fd(int n, int fd);
int ft_atoi_p(char *s, int *n);
#endif