/* RingBuffer.h Last modified by L. Stewart, November 8, 1982 3:33 PM */ #define CBS 64 struct CBuf { char *buf; int len, rp, wp; char abuf[CBS]; };