added include guards and vim session file

This commit is contained in:
Sheldon Lee
2020-06-12 19:28:43 +01:00
parent 397680dbf8
commit 9fd1fa4c83
4 changed files with 924 additions and 1 deletions
-1
View File
@@ -7,7 +7,6 @@ unsigned int toIndex(Grid* grid, int x, int y)
return (grid->width*y + x)%grid->size;
}
void clearGrid(Grid* grid)
{
for (int i = 0; i < grid->size; i++) grid->arr[i]=false;