/in/terminal.c: In function 'load':
/in/terminal.c:125:26: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'Disk * {aka enum <anonymous> *}' [-Wformat=]
fscanf(fp, "%d",&(game->board[i][j]));
~^ ~~~~~~~~~~~~~~~~~~~~
In file included from /in/terminal.c:9:0:
/in/terminal.c: In function 'save':
/in/compile/terminal.h:12:17: warning: format '%s' expects a matching 'char *' argument [-Wformat=]
#define RED "\033[31m" /* Red */
^
/in/terminal.c:154:16: note: in expansion of macro 'RED'
printf(RED"%s does not exist, save sample.txt by default.\n"RESET);
^~~
/in/terminal.c:154:21: note: format string is defined here
printf(RED"%s does not exist, save sample.txt by default.\n"RESET);
~^