Elaborato_SO/inc/server.h

13 lines
199 B
C
Raw Normal View History

2023-05-14 17:07:34 +02:00
#ifndef SERVER_H
#define SERVER_H
2023-05-14 17:53:38 +02:00
typedef struct input {
int collums;
int rows;
char player1Token;
char player2token;
} input_t;
input_t check_input(int argc, char *argv[]);
2023-05-14 17:07:34 +02:00
#endif