Home | History | Annotate | Download | only in hack

Lines Matching defs:tl

117 	struct topl    *tl;
126 tl = alloc(strlen(toplines) + sizeof(*tl) + 1);
127 tl->next_topl = old_toplines;
128 tl->topl_text = (char *) (tl + 1);
129 (void) strcpy(tl->topl_text, toplines);
130 old_toplines = tl;
131 while (cnt && tl) {
133 tl = tl->next_topl;
135 if (tl && tl->next_topl) {
136 free(tl->next_topl);
137 tl->next_topl = 0;
216 char *bp = pbuf, *tl;
262 tl = toplines + tlpos;
270 (void) memcpy(tl, bp, n0);
271 tl[n0] = 0;
275 while (n0 > 1 && tl[n0 - 1] == ' ' && tl[n0 - 2] == ' ')
276 tl[--n0] = 0;
279 if (n0 && tl[0])