-
Notifications
You must be signed in to change notification settings - Fork 0
/
minitalk_bonus.h
31 lines (26 loc) · 1.12 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
26
27
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk_bonus.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lvincent <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/11 16:01:48 by lvincent #+# #+# */
/* Updated: 2023/04/18 20:39:18 by lvincent ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_BONUS_H
# define MINITALK_BONUS_H
# include <signal.h>
# include "libft/libft.h"
typedef struct s_msg
{
int byte;
int shift;
int len;
int cond;
int i;
unsigned char *str;
} t_msg;
void handler(int pid);
#endif