Home | History | Annotate | Download | only in sdiff

Lines Matching defs:WIDTH

31 #define WIDTH 130
63 size_t line_width; /* width of a line (two columns and divider) */
64 size_t width; /* width of each column */
87 { "width", required_argument, NULL, 'w' },
158 size_t diffargc = 0, wflag = WIDTH;
238 errx(2, "width is %s: %s", errstr, optarg);
284 width = (wflag - 3) / 2;
286 if (width > (SIZE_T_MAX - 3) / 2)
287 errx(2, "width is too large: %zu", width);
288 line_width = width * 2 + 3;
369 * that tabs are variable-width. Takes a string, the current column
394 * width, don't print it and just quit.
507 printcol(s1, &col, width);
517 /* Otherwise, we pad this column up to width. */
518 for (; col < width; ++col)
1035 "usage: %s [-abdilstW] [-I regexp] [-o outfile] [-w width] file1 file2\n",