-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminitalk.h
More file actions
26 lines (22 loc) · 1.13 KB
/
minitalk.h
File metadata and controls
26 lines (22 loc) · 1.13 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: amait-ou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/30 19:26:25 by amait-ou #+# #+# */
/* Updated: 2022/12/31 23:04:33 by amait-ou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <unistd.h>
# include <signal.h>
int ft_atoi(const char *str);
void ft_putchar(char c);
void ft_putstr(char *s);
void ft_putnbr(int n);
int ft_power(int nb, int power);
void ft_sender(pid_t pid, char c);
#endif