g voulu implementer le code client dans le handler et g tout cassee

This commit is contained in:
hugogogo
2021-09-01 19:06:07 +02:00
parent 016e16e7be
commit bb90704a0c
7 changed files with 86 additions and 42 deletions

View File

@@ -6,7 +6,15 @@
# include <unistd.h> // for getpid
# include "libft.h"
int msg_received;
typedef struct s_client
{
int mask;
int count_char;
int server_pid;
char *text;
} t_client;
t_client client;
#endif