File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ # ENDIL: exclude Visual Studio solution directory
2
+ c-dokuVS
3
+
1
4
# Object files
2
5
* .o
3
6
* .ko
Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ int main(int argc, char* argv[])
46
46
initializeSudokuBoard (& board );
47
47
initializeString (& commandInput .string );
48
48
49
+ puts ("========== Sudoku Game ==========" );
50
+ puts (showAllCommandsPrompt );
51
+ putchar ('\n' );
52
+
49
53
// if one argument was provided, go ahead and load sudoku board from textfile
50
54
if (argc > 1 )
51
55
{
@@ -54,9 +58,6 @@ int main(int argc, char* argv[])
54
58
loadSudokuBoard (argv [1 ], & board );
55
59
}
56
60
57
- puts ("========== Sudoku Game ==========" );
58
- puts (showAllCommandsPrompt );
59
- putchar ('\n' );
60
61
printSudokuBoard (& board );
61
62
62
63
while (running )
You can’t perform that action at this time.
0 commit comments