summaryrefslogtreecommitdiff
path: root/src/ring.h
blob: 08364210740b31353f933259fd1c1d8723545086 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef RING_H
#define RING_H

typedef struct ring {
	int size;
	int location;
	char ascii[9];
} Ring;

#endif