HomeSort by: relevance | last modified time | path
    Searched defs:maxcols (Results 1 - 1 of 1) sorted by relevancy

  /src/usr.bin/column/
column.c 216 int *lens, *nlens, maxcols; local in function:maketbl
221 cols = ecalloc((maxcols = DEFCOLS), sizeof(*cols));
222 lens = ecalloc(maxcols, sizeof(*lens));
226 if (++coloff == maxcols) {
227 ncols = erealloc(cols, (maxcols +
229 nlens = erealloc(lens, (maxcols +
233 (void)memset(cols + maxcols, 0,
235 (void)memset(lens + maxcols, 0,
237 maxcols += DEFCOLS;

Completed in 11 milliseconds