Home | History | Annotate | Download | only in src

Lines Matching defs:cut

57         size_t cut = width-1;
59 while(!ISSPACE(ptr[cut]) && cut) {
60 cut--;
62 if(0 == cut)
63 /* not a single cutting position was found, just cut it at the
65 cut = width-1;
67 (void)fwrite(ptr, cut + 1, 1, config->errors);
69 ptr += cut + 1; /* skip the space too */
70 len -= cut;