-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk_bonus.h
25 lines (21 loc) · 1.13 KB
/
minitalk_bonus.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk_bonus.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: duzun <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/03 04:20:26 by duzun #+# #+# */
/* Updated: 2022/09/08 00:27:30 by duzun ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_BONUS_H
# define MINITALK_BONUS_H
# include <unistd.h>
# include <signal.h>
# include <stdlib.h>
void ft_putchar_fd(char c, int fd);
void ft_putstr_fd(char *s, int fd);
void ft_putnbr_fd(int n, int fd);
int ft_atoi(const char *str);
#endif