In file included from /in/board.c:6:0:
/in/board.c: In function 'printBoardColor':
/in/compile/terminal.h:11:17: warning: too many arguments for format [-Wformat-extra-args]
#define BLACK "\033[30m" /* Black */
^
/in/board.c:185:28: note: in expansion of macro 'BLACK'
printf(BLACK," %c |",icons[board[(i+1)/2-1][j]]);
^~~~~
/in/compile/terminal.h:18:17: warning: too many arguments for format [-Wformat-extra-args]
#define WHITE "\033[37m" /* White */
^
/in/board.c:188:32: note: in expansion of macro 'WHITE'
printf(WHITE," %c |",icons[board[(i+1)/2-1][j]]);
^~~~~