diff options
Diffstat (limited to 'src/ring.h')
-rw-r--r-- | src/ring.h | 10 |
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 |