Elaborato_SO/inc/server.h

13 lines
199 B
C

#ifndef SERVER_H
#define SERVER_H
typedef struct input {
int collums;
int rows;
char player1Token;
char player2token;
} input_t;
input_t check_input(int argc, char *argv[]);
#endif