-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
31 lines (28 loc) · 1.14 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
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: juhagon <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/15 08:41:43 by juhagon #+# #+# */
/* Updated: 2021/12/15 12:58:51 by juhagon ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <signal.h>
# include <unistd.h>
# include <stdio.h>
# include <stdlib.h>
typedef struct s_sig
{
int len;
int i;
int c;
int toggle;
char *message;
} t_sig;
int ft_atoi(const char *s);
int ft_strlen(char *str);
#endif