GlhLineSeg
GlhLineSeg *seg; /* One segment of a line being saved */
GlhLineSeg *seg; /* One segment of a line being displayed */
glh->buffer = (GlhLineSeg *) malloc(sizeof(GlhLineSeg) * nbuff);
GlhLineSeg *seg = glh->unused + i;
GlhLineSeg *buffer; /* The resized buffer */
buffer = (GlhLineSeg *) malloc(nbuff * sizeof(GlhLineSeg));
GlhLineSeg *buffer; /* An array of sub-line nodes to be partitioned */
GlhLineSeg *seg = hnode->head;
GlhLineSeg *unused; /* The list of free nodes in buffer[] */
GlhLineSeg *seg = glh->unused + i;
GlhLineSeg *seg; /* The line segment that the next character will */
GlhLineSeg *seg; /* A line segment */
GlhLineSeg *tail; /* The last node in the list of line segments */
GlhLineSeg *seg; /* A node in the list of line segments */
GlhLineSeg *seg; /* A node in the list of line segments */
glh->buffer = (GlhLineSeg *) malloc(sizeof(GlhLineSeg) * glh->nbuff);
GlhLineSeg *seg = glh->unused + i;
typedef struct GlhLineSeg GlhLineSeg;
GlhLineSeg *next; /* The next sub-string of the history line */
GlhLineSeg *head; /* The list of sub-strings which make up a line */