diff options
author | HampusM <hampus@hampusmat.com> | 2022-01-07 12:56:37 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-01-07 12:56:37 +0100 |
commit | 977c46591583a59f8d51773ffaba08b5076a426e (patch) | |
tree | a04727c2075cebe0ae8b93728c9071e164a17c43 /src/grid.c | |
parent | 2876d7efdeac80085a04b8f1c509065bf323f70e (diff) |
style: fix minor code formatting issues
Diffstat (limited to 'src/grid.c')
-rw-r--r-- | src/grid.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,7 @@ #include "grid.h" #include "utils.h" -#include <stdlib.h> #include <stdio.h> +#include <stdlib.h> Grid grid_create(unsigned int width, unsigned int height, char *fill) { @@ -53,4 +53,3 @@ void grid_destroy(Grid grid) free(grid.grid); } - |