summaryrefslogtreecommitdiff
path: root/cell.h
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-03-09 00:21:35 +1300
committerDavid Phillips <david@sighup.nz>2019-03-10 21:15:30 +1300
commit6bc7fdab077b1877f71b69f4b2c1e8046a302e9b (patch)
treeba7815f0557ed9cef1056ba9c4ba81584c1650bc /cell.h
downloadsudoku-6bc7fdab077b1877f71b69f4b2c1e8046a302e9b.tar.xz
Initial working copy, buggy
Diffstat (limited to 'cell.h')
-rw-r--r--cell.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cell.h b/cell.h
new file mode 100644
index 0000000..76ecd90
--- /dev/null
+++ b/cell.h
@@ -0,0 +1,7 @@
+struct cell
+{
+ char val;
+ char not[9];
+} cell;
+
+