Home | History | Annotate | Download | only in pending

Lines Matching defs:line

17     Reformat input to not exceed a maximum line length.
19 -w WIDTH maximum characters per line (default 75)
32 char *line = NULL;
36 while ((line_length = getline(&line, &allocated_length, fp)) > 0) {
39 while (b < line_length && isspace(line[b])) b++;
50 while (isspace(line[b])) b++;
51 for (e = b + 1; e < line_length && !isspace(line[e]);) e++;
54 line[e] = 0;
55 w = utf8len(line + b);
62 xprintf("%.*s%.*s",is_first?indent_end:1,is_first?line:" ",(e-b),line+b);