-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminitalk.h
More file actions
28 lines (24 loc) · 1.17 KB
/
Copy pathminitalk.h
File metadata and controls
28 lines (24 loc) · 1.17 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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mkhellou < [email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/22 15:09:22 by mkhellou #+# #+# */
/* Updated: 2023/01/02 11:09:17 by mkhellou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <unistd.h>
# include <signal.h>
# include <stdlib.h>
# include "libft/libft.h"
void handler(int sig);
void input(unsigned char *str, int pid);
void sleep_system(void);
void ft_error_c(void);
void ft_error_s(void);
int unicode_checker(unsigned char c);
#endif