Lines Matching refs:width
37 "each output line is the maximum width possible that does not "
42 "[+carriage-return?The current count of line width will be set "
45 "[+backspace?If positive, the current count of line width will be "
64 "[w:width]#[width:=80?Use a maximum line length of \awidth\a columns "
89 static void fold(Sfio_t *in, Sfio_t *out, register int width, const char *cont, size_t contsize, char *cols)
105 if(cols['\b']==0 && (n=sfvalue(in))<=width)
116 while((cp-first) > (width-col))
121 col = width-col;
145 if((cp-first) > (width-col))
172 register int n, width=WIDTH;
206 if ((width = opt_info.num) <= 0)
207 error(2, "%d: width must be positive", opt_info.num);
234 fold(fp,sfstdout,width,cont,contsize,cols);