source: trunk/athena/bin/delete/col.h @ 1716

Revision 1716, 1.0 KB checked in by jik, 35 years ago (diff)
Initial revision
Line 
1/*
2 * DEF_COL_WIDTH: the column with to try to use if none is specified.
3 * DEF_WAIT: 1 if the program is supposed to wait for stdin to get to
4 *           end-of-file and then print out everything in order in
5 *           columns by default.  If this is 0, then the default is
6 *           for the program to print across instead of down and to
7 *           print as it receives input from stdin.
8 * DEF_VAR_COLS: if 1, use variable-width columns based on text width.
9 *               if 1, DEF_WAIT must be true.
10 * DEF_SCR_WIDTH: default screen width
11 * DEF_NUM_ITEMS: if 1, number each item
12 * DEF_MARGIN: the default margin in between columns of text
13 */
14#define DEF_COL_WIDTH 20
15#define DEF_WAIT 1
16#define DEF_VAR_COLS 1
17#define DEF_SCR_WIDTH 80
18#define DEF_NUM_ITEMS 1
19#define DEF_MARGIN 2
20 /* This is used for when we need a guess as to how long a number will */
21 /* be when printed.  Also, if we are supposed to work in wait mode    */
22 /* and are not given a maxitems value, this is what is used.          */
23#define DEF_MAX_ITEMS 10000
Note: See TracBrowser for help on using the repository browser.