Searched refs:tabstops (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/expand/
H A Dunexpand.c53 #define MAX_TABS 100 /* maximum number of tabstops */
55 static int nstops = 0; /* total number of tabstops */
56 static int tabstops[MAX_TABS]; /* the tabstops themselves */ variable
141 if ((ocol % tabstops[0]) != 0)
143 } else { /* explicit tabstops */
145 ocol > tabstops[cstop])
154 if (ocol != tabstops[cstop])
193 ocol += ocol % tabstops[0];
196 ocol < tabstops[csto
[all...]
H A Dexpand.c55 static int tabstops[100]; variable
161 ((column - 1) % tabstops[0]) !=
162 (tabstops[0] - 1));
166 if (tabstops[n] > column)
173 while (column < tabstops[n]) {
255 if (nstops > 0 && i <= tabstops[nstops-1]) {
261 tabstops[nstops++] = i;
/illumos-gate/usr/src/cmd/lp/filter/postscript/postprint/
H A Dpostprint.c129 int tabstops = TABSTOPS; /* tabs set at these columns */ variable
378 case 't': /* tabstops */
379 tabstops = atoi(optarg);
381 if (tabstops <= 0) {
383 tabstops = TABSTOPS;
793 endcol += tabstops - ((endcol - 1) % tabstops);

Completed in 72 milliseconds