13 lines
236 B
C
13 lines
236 B
C
#ifndef CLIENT_H
|
|
# define CLIENT_H
|
|
|
|
# include <signal.h> // for signal kill sigaction
|
|
# include <sys/types.h> // for getpid kill
|
|
# include <unistd.h> // for getpid
|
|
# include "libft.h"
|
|
|
|
int msg_received;
|
|
|
|
#endif
|
|
|