Home | History | Annotate | Download | only in hack

Lines Matching defs:tl

271 	struct line    *tl;
292 tl = alloc(len + sizeof(*tl) + 1);
293 tl->next_line = 0;
294 tl->line_text = (char *) (tl + 1);
295 (void) strcpy(tl->line_text, text);
297 texthead = tl;
299 texttail->next_line = tl;
300 texttail = tl;
319 for (tl = texthead; tl; tl = tl->next_line) {
324 putstr(tl->line_text);
335 for (tl = texthead; tl; tl = tl->next_line) {
336 if (page_line(tl->line_text)) {
349 while ((tl = texthead) != NULL) {
350 texthead = tl->next_line;
351 free(tl);