/in/terminal.c: In function 'help':
/in/terminal.c:19:16: error: 'Format' undeclared (first use in this function); did you mean 'strcat'?
printf(Format: "Usage: ./reversi [OPTIONS]\n\n");
^~~~~~
strcat
/in/terminal.c:19:16: note: each undeclared identifier is reported only once for each function it appears in
/in/terminal.c:19:22: error: expected ')' before ':' token
printf(Format: "Usage: ./reversi [OPTIONS]\n\n");
^
/in/terminal.c:20:22: error: expected ')' before ':' token
printf(Format: "A local multiplayer Reversi game.\n\n");
^
/in/terminal.c:21:22: error: expected ')' before ':' token
printf(Format: "Options: \n");
^
/in/terminal.c:22:22: error: expected ')' before ':' token
printf(Format: "-h|--help Print this help message\n");
^
/in/terminal.c:23:22: error: expected ')' before ':' token
printf(Format: "-v|--version Print version information\n\n");
^
/in/terminal.c:24:22: error: expected ')' before ':' token
printf(Format: "Commands: \n");
^
/in/terminal.c:25:22: error: expected ')' before ':' token
printf(Format: "AUTO\tAutomatically process the game by always placing the first valid disk\n"
^