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
+4
View File
@@ -1,6 +1,9 @@
#include <stdbool.h>
#include <ncurses.h>
#ifndef GRID_H
#define GRID_H
typedef struct Grid {
unsigned int size;
unsigned int width;
@@ -15,3 +18,4 @@ void putPixel(Grid* grid, int x, int y);
void drawGrid(Grid* grid);
#endif