/* queue.h
  D. Swinehart May 5, 1982 10:59 am */

struct Element {
	struct Element *next;
	int data[0]; };

struct Queue {
	struct Element *head;
	struct Element *tail; };
#define lenQueue (sizeof (struct Queue)/2)