column.c | 143 int chcnt, col, cnt, endcol, numcols; local in function:c_columnate 146 numcols = termwidth / maxlength; 152 if (++col == numcols) { 171 int base, chcnt, cnt, col, endcol, numcols, numrows, row; local in function:r_columnate 173 numcols = termwidth / maxlength; 174 numrows = entries / numcols; 175 if (entries % numcols) 180 for (base = row, chcnt = col = 0; col < numcols; ++col) {
|