#ifndef RING_H #define RING_H typedef struct ring { int size; int location; char ascii[9]; } Ring; #endif