-
Notifications
You must be signed in to change notification settings - Fork 0
/
minitalk.h
28 lines (23 loc) · 1.08 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: bhagenlo <[email protected]. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/26 16:08:54 by bhagenlo #+# #+# */
/* Updated: 2022/05/31 12:12:08 by bhagenlo ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include "./libft/libft.h"
# include <signal.h>
# include <unistd.h>
# define SLEEP_TIME 200
typedef struct s_character_bitindex
{
char c;
int index;
} t_ichar;
#endif