This commit is contained in:
Lorenzo Bianchi 2023-05-26 15:40:09 +02:00
parent 75bec5b425
commit 8e51cc1ab4
1 changed files with 12 additions and 0 deletions

View File

@ -3,8 +3,20 @@
#include <structures.h>
extern input_server_t _INPUT_S;
typedef struct {
int argc;
char **argv;
int msgqid;
int semid;
int shmid;
pid_t pids[2];
} server_stats_t;
void setupServer(int argc, char *argv[]);
input_server_t check_input(int argc, char *argv[]);