diff --git a/include/tinycols/game_utils.h b/include/tinycols/game_utils.h index d87799b..9b5a9fe 100644 --- a/include/tinycols/game_utils.h +++ b/include/tinycols/game_utils.h @@ -21,4 +21,4 @@ unsigned short get_level_by_jewels(uint_least16_t num); */ game_score_t calc_score(unsigned int jewel_count); -#endif //TINYCOLS_GAME_UTILS_H \ No newline at end of file +#endif //TINYCOLS_GAME_UTILS_H diff --git a/src/tinycols/game.c b/src/tinycols/game.c index 8a63eff..483861f 100644 --- a/src/tinycols/game.c +++ b/src/tinycols/game.c @@ -65,4 +65,4 @@ void game_free(struct game *gm) { free(gm->grid); free(gm); -} \ No newline at end of file +} diff --git a/src/tinycols/game_utils.c b/src/tinycols/game_utils.c index 9760e23..e7073ef 100644 --- a/src/tinycols/game_utils.c +++ b/src/tinycols/game_utils.c @@ -12,4 +12,4 @@ unsigned short get_level_by_jewels(uint_least16_t num) inline game_score_t calc_score(unsigned int jewel_count) { return (jewel_count - PIECE_SIZE + 1) * GAME_SCORE_PER_PIECE; -} \ No newline at end of file +} diff --git a/src/tinycols/grid.c b/src/tinycols/grid.c index 333a248..90fc3af 100644 --- a/src/tinycols/grid.c +++ b/src/tinycols/grid.c @@ -201,4 +201,4 @@ game_score_t grid_scan(const struct grid *gr, uint8_t *result) } return score; -} \ No newline at end of file +} diff --git a/src/tinycols/piece.c b/src/tinycols/piece.c index e9aeebf..5fbbace 100644 --- a/src/tinycols/piece.c +++ b/src/tinycols/piece.c @@ -119,4 +119,4 @@ bool position_piece_in_grid(struct piece *pc, const struct grid *gr) } return true; -} \ No newline at end of file +}