summaryrefslogtreecommitdiff
path: root/src/ring.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-10-12 15:27:26 -0400
committerLouie S <louie@example.com>2023-10-12 15:27:43 -0400
commit91da624fe1665f3ddb3216ebb8a56a982074228d (patch)
treef64f629d2f4c33b7f64681fd9e285620f139e1ed /src/ring.h
First commit
Diffstat (limited to 'src/ring.h')
-rw-r--r--src/ring.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ring.h b/src/ring.h
new file mode 100644
index 0000000..0836421
--- /dev/null
+++ b/src/ring.h
@@ -0,0 +1,10 @@
+#ifndef RING_H
+#define RING_H
+
+typedef struct ring {
+ int size;
+ int location;
+ char ascii[9];
+} Ring;
+
+#endif