Skip to content

Commit

Permalink
another try
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Jun 23, 2024
1 parent 20a6d4d commit 86ff3e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions program/source/structures/concrete/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ ksize_t _empty_cell_count(KGrid from);
Kakuro init_kakuro(FILE * kakuro_file) {
assert(kakuro_file && "KAKURO FILE POINTER IS NULL");
rewind(kakuro_file);
assert(!feof(kakuro_file) && "KAKURO FILE STREAM IS AT THE END");

Kakuro k = { 0 };
_kakuro_alloc(&k, kakuro_file);
Expand Down

0 comments on commit 86ff3e9

Please sign in to comment.