Home | History | Annotate | Line # | Download | only in rs
rs.c revision 1.4.4.1
      1      1.1    tls /*-
      2      1.1    tls  * Copyright (c) 1993
      3      1.1    tls  *	The Regents of the University of California.  All rights reserved.
      4      1.1    tls  *
      5      1.1    tls  * Redistribution and use in source and binary forms, with or without
      6      1.1    tls  * modification, are permitted provided that the following conditions
      7      1.1    tls  * are met:
      8      1.1    tls  * 1. Redistributions of source code must retain the above copyright
      9      1.1    tls  *    notice, this list of conditions and the following disclaimer.
     10      1.1    tls  * 2. Redistributions in binary form must reproduce the above copyright
     11      1.1    tls  *    notice, this list of conditions and the following disclaimer in the
     12      1.1    tls  *    documentation and/or other materials provided with the distribution.
     13      1.1    tls  * 3. All advertising materials mentioning features or use of this software
     14      1.1    tls  *    must display the following acknowledgement:
     15      1.1    tls  *	This product includes software developed by the University of
     16      1.1    tls  *	California, Berkeley and its contributors.
     17      1.1    tls  * 4. Neither the name of the University nor the names of its contributors
     18      1.1    tls  *    may be used to endorse or promote products derived from this software
     19      1.1    tls  *    without specific prior written permission.
     20      1.1    tls  *
     21      1.1    tls  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22      1.1    tls  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23      1.1    tls  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24      1.1    tls  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25      1.1    tls  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26      1.1    tls  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27      1.1    tls  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28      1.1    tls  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29      1.1    tls  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30      1.1    tls  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31      1.1    tls  * SUCH DAMAGE.
     32      1.1    tls  */
     33      1.1    tls 
     34      1.4  lukem #include <sys/cdefs.h>
     35      1.1    tls #ifndef lint
     36      1.4  lukem __COPYRIGHT("@(#) Copyright (c) 1993\n\
     37      1.4  lukem 	The Regents of the University of California.  All rights reserved.\n");
     38      1.1    tls #endif /* not lint */
     39      1.1    tls 
     40      1.1    tls #ifndef lint
     41      1.4  lukem #if 0
     42      1.1    tls static char sccsid[] = "@(#)rs.c	8.1 (Berkeley) 6/6/93";
     43      1.4  lukem #else
     44      1.4  lukem __RCSID("$NetBSD: rs.c,v 1.4.4.1 2000/10/19 16:32:42 he Exp $");
     45      1.4  lukem #endif
     46      1.1    tls #endif /* not lint */
     47      1.1    tls 
     48      1.1    tls /*
     49      1.1    tls  *	rs - reshape a data array
     50      1.1    tls  *	Author:  John Kunze, Office of Comp. Affairs, UCB
     51      1.1    tls  *		BEWARE: lots of unfinished edges
     52      1.1    tls  */
     53      1.1    tls 
     54      1.1    tls #include <ctype.h>
     55      1.4  lukem #include <err.h>
     56      1.1    tls #include <stdio.h>
     57      1.1    tls #include <stdlib.h>
     58      1.2    cgd #include <string.h>
     59  1.4.4.1     he #include <stdarg.h>
     60      1.1    tls 
     61      1.1    tls long	flags;
     62      1.1    tls #define	TRANSPOSE	000001
     63      1.1    tls #define	MTRANSPOSE	000002
     64      1.1    tls #define	ONEPERLINE	000004
     65      1.1    tls #define	ONEISEPONLY	000010
     66      1.1    tls #define	ONEOSEPONLY	000020
     67      1.1    tls #define	NOTRIMENDCOL	000040
     68      1.1    tls #define	SQUEEZE		000100
     69      1.1    tls #define	SHAPEONLY	000200
     70      1.1    tls #define	DETAILSHAPE	000400
     71      1.1    tls #define	RIGHTADJUST	001000
     72      1.1    tls #define	NULLPAD		002000
     73      1.1    tls #define	RECYCLE		004000
     74      1.1    tls #define	SKIPPRINT	010000
     75      1.1    tls #define	ICOLBOUNDS	020000
     76      1.1    tls #define	OCOLBOUNDS	040000
     77      1.1    tls #define ONEPERCHAR	0100000
     78      1.1    tls #define NOARGS		0200000
     79      1.1    tls 
     80      1.1    tls short	*colwidths;
     81      1.1    tls short	*cord;
     82      1.1    tls short	*icbd;
     83      1.1    tls short	*ocbd;
     84      1.1    tls int	nelem;
     85      1.1    tls char	**elem;
     86      1.1    tls char	**endelem;
     87      1.1    tls char	*curline;
     88      1.1    tls int	allocsize = BUFSIZ;
     89      1.1    tls int	curlen;
     90      1.1    tls int	irows, icols;
     91      1.1    tls int	orows, ocols;
     92      1.1    tls int	maxlen;
     93      1.1    tls int	skip;
     94      1.1    tls int	propgutter;
     95      1.1    tls char	isep = ' ', osep = ' ';
     96      1.1    tls int	owidth = 80, gutter = 2;
     97      1.1    tls 
     98  1.4.4.1     he void	  usage __P((char *, ...))
     99  1.4.4.1     he      __attribute__((__format__(__printf__, 1, 2)));
    100      1.1    tls void	  getargs __P((int, char *[]));
    101      1.1    tls void	  getfile __P((void));
    102      1.1    tls int	  getline __P((void));
    103      1.1    tls char	 *getlist __P((short **, char *));
    104      1.1    tls char	 *getnum __P((int *, char *, int));
    105      1.1    tls char	**getptrs __P((char **));
    106      1.4  lukem int	  main __P((int, char **));
    107      1.1    tls void	  prepfile __P((void));
    108      1.1    tls void	  prints __P((char *, int));
    109      1.1    tls void	  putfile __P((void));
    110      1.1    tls 
    111      1.3     pk #define INCR(ep) do {			\
    112      1.3     pk 	if (++ep >= endelem)		\
    113      1.3     pk 		ep = getptrs(ep);	\
    114      1.3     pk } while(0)
    115      1.3     pk 
    116      1.1    tls int
    117      1.1    tls main(argc, argv)
    118      1.1    tls 	int argc;
    119      1.1    tls 	char *argv[];
    120      1.1    tls {
    121      1.1    tls 	getargs(argc, argv);
    122      1.1    tls 	getfile();
    123      1.1    tls 	if (flags & SHAPEONLY) {
    124      1.1    tls 		printf("%d %d\n", irows, icols);
    125      1.1    tls 		exit(0);
    126      1.1    tls 	}
    127      1.1    tls 	prepfile();
    128      1.1    tls 	putfile();
    129      1.1    tls 	exit(0);
    130      1.1    tls }
    131      1.1    tls 
    132      1.1    tls void
    133      1.1    tls getfile()
    134      1.1    tls {
    135      1.4  lukem 	char *p;
    136      1.4  lukem 	char *endp;
    137      1.4  lukem 	char **ep = 0;
    138      1.1    tls 	int multisep = (flags & ONEISEPONLY ? 0 : 1);
    139      1.1    tls 	int nullpad = flags & NULLPAD;
    140      1.1    tls 	char **padto;
    141      1.1    tls 
    142      1.1    tls 	while (skip--) {
    143      1.1    tls 		getline();
    144      1.1    tls 		if (flags & SKIPPRINT)
    145      1.1    tls 			puts(curline);
    146      1.1    tls 	}
    147      1.1    tls 	getline();
    148      1.1    tls 	if (flags & NOARGS && curlen < owidth)
    149      1.1    tls 		flags |= ONEPERLINE;
    150      1.1    tls 	if (flags & ONEPERLINE)
    151      1.1    tls 		icols = 1;
    152      1.1    tls 	else				/* count cols on first line */
    153      1.1    tls 		for (p = curline, endp = curline + curlen; p < endp; p++) {
    154      1.1    tls 			if (*p == isep && multisep)
    155      1.1    tls 				continue;
    156      1.1    tls 			icols++;
    157      1.1    tls 			while (*p && *p != isep)
    158      1.1    tls 				p++;
    159      1.1    tls 		}
    160      1.1    tls 	ep = getptrs(elem);
    161      1.1    tls 	p = curline;
    162      1.1    tls 	do {
    163      1.1    tls 		if (flags & ONEPERLINE) {
    164      1.3     pk 			*ep = curline;
    165      1.3     pk 			INCR(ep);		/* prepare for next entry */
    166      1.1    tls 			if (maxlen < curlen)
    167      1.1    tls 				maxlen = curlen;
    168      1.1    tls 			irows++;
    169      1.1    tls 			continue;
    170      1.1    tls 		}
    171      1.1    tls 		for (p = curline, endp = curline + curlen; p < endp; p++) {
    172      1.1    tls 			if (*p == isep && multisep)
    173      1.1    tls 				continue;	/* eat up column separators */
    174      1.1    tls 			if (*p == isep)		/* must be an empty column */
    175      1.1    tls 				*ep = "";
    176      1.1    tls 			else			/* store column entry */
    177      1.1    tls 				*ep = p;
    178      1.1    tls 			while (p < endp && *p != isep)
    179      1.1    tls 				p++;		/* find end of entry */
    180      1.1    tls 			*p = '\0';		/* mark end of entry */
    181      1.1    tls 			if (maxlen < p - *ep)	/* update maxlen */
    182      1.1    tls 				maxlen = p - *ep;
    183      1.3     pk 			INCR(ep);		/* prepare for next entry */
    184      1.1    tls 		}
    185      1.1    tls 		irows++;			/* update row count */
    186      1.1    tls 		if (nullpad) {			/* pad missing entries */
    187      1.1    tls 			padto = elem + irows * icols;
    188      1.3     pk 			while (ep < padto) {
    189      1.3     pk 				*ep = "";
    190      1.3     pk 				INCR(ep);
    191      1.3     pk 			}
    192      1.1    tls 		}
    193      1.1    tls 	} while (getline() != EOF);
    194      1.1    tls 	*ep = 0;				/* mark end of pointers */
    195      1.1    tls 	nelem = ep - elem;
    196      1.1    tls }
    197      1.1    tls 
    198      1.1    tls void
    199      1.1    tls putfile()
    200      1.1    tls {
    201      1.4  lukem 	char **ep;
    202      1.4  lukem 	int i, j, n;
    203      1.1    tls 
    204      1.1    tls 	ep = elem;
    205      1.3     pk 	if (flags & TRANSPOSE) {
    206      1.1    tls 		for (i = 0; i < orows; i++) {
    207      1.1    tls 			for (j = i; j < nelem; j += orows)
    208      1.1    tls 				prints(ep[j], (j - i) / orows);
    209      1.1    tls 			putchar('\n');
    210      1.1    tls 		}
    211      1.3     pk 	} else {
    212      1.3     pk 		for (n = 0, i = 0; i < orows && n < nelem; i++) {
    213      1.3     pk 			for (j = 0; j < ocols; j++) {
    214      1.3     pk 				if (n++ >= nelem)
    215      1.3     pk 					break;
    216      1.1    tls 				prints(*ep++, j);
    217      1.3     pk 			}
    218      1.1    tls 			putchar('\n');
    219      1.1    tls 		}
    220      1.3     pk 	}
    221      1.1    tls }
    222      1.1    tls 
    223      1.1    tls void
    224      1.1    tls prints(s, col)
    225      1.1    tls 	char *s;
    226      1.1    tls 	int col;
    227      1.1    tls {
    228      1.4  lukem 	int n;
    229      1.4  lukem 	char *p = s;
    230      1.1    tls 
    231      1.1    tls 	while (*p)
    232      1.1    tls 		p++;
    233      1.1    tls 	n = (flags & ONEOSEPONLY ? 1 : colwidths[col] - (p - s));
    234      1.1    tls 	if (flags & RIGHTADJUST)
    235      1.1    tls 		while (n-- > 0)
    236      1.1    tls 			putchar(osep);
    237      1.1    tls 	for (p = s; *p; p++)
    238      1.1    tls 		putchar(*p);
    239      1.1    tls 	while (n-- > 0)
    240      1.1    tls 		putchar(osep);
    241      1.1    tls }
    242      1.1    tls 
    243      1.1    tls void
    244  1.4.4.1     he usage(char *msg, ...)
    245      1.1    tls {
    246  1.4.4.1     he 	va_list ap;
    247  1.4.4.1     he 
    248  1.4.4.1     he 	va_start(ap, msg);
    249  1.4.4.1     he 	vwarnx(msg, ap);
    250  1.4.4.1     he 	va_end(ap);
    251      1.1    tls 	fprintf(stderr,
    252      1.3     pk "Usage:  rs [ -[csCS][x][kKgGw][N]tTeEnyjhHm ] [ rows [ cols ] ]\n");
    253      1.1    tls 	exit(1);
    254      1.1    tls }
    255      1.1    tls 
    256      1.1    tls void
    257      1.1    tls prepfile()
    258      1.1    tls {
    259      1.4  lukem 	char **ep;
    260      1.4  lukem 	int  i;
    261      1.4  lukem 	int  j;
    262      1.1    tls 	char **lp;
    263      1.1    tls 	int colw;
    264      1.1    tls 	int max = 0;
    265      1.1    tls 	int n;
    266      1.1    tls 
    267      1.4  lukem 	ep = NULL;
    268      1.1    tls 	if (!nelem)
    269      1.1    tls 		exit(0);
    270      1.1    tls 	gutter += maxlen * propgutter / 100.0;
    271      1.1    tls 	colw = maxlen + gutter;
    272      1.1    tls 	if (flags & MTRANSPOSE) {
    273      1.1    tls 		orows = icols;
    274      1.1    tls 		ocols = irows;
    275      1.1    tls 	}
    276      1.1    tls 	else if (orows == 0 && ocols == 0) {	/* decide rows and cols */
    277      1.1    tls 		ocols = owidth / colw;
    278      1.3     pk 		if (ocols == 0) {
    279      1.3     pk 			warnx("Display width %d is less than column width %d\n", owidth, colw);
    280      1.3     pk 			ocols = 1;
    281      1.3     pk 		}
    282      1.1    tls 		if (ocols > nelem)
    283      1.1    tls 			ocols = nelem;
    284      1.1    tls 		orows = nelem / ocols + (nelem % ocols ? 1 : 0);
    285      1.1    tls 	}
    286      1.1    tls 	else if (orows == 0)			/* decide on rows */
    287      1.1    tls 		orows = nelem / ocols + (nelem % ocols ? 1 : 0);
    288      1.1    tls 	else if (ocols == 0)			/* decide on cols */
    289      1.1    tls 		ocols = nelem / orows + (nelem % orows ? 1 : 0);
    290      1.1    tls 	lp = elem + orows * ocols;
    291      1.1    tls 	while (lp > endelem) {
    292      1.1    tls 		getptrs(elem + nelem);
    293      1.1    tls 		lp = elem + orows * ocols;
    294      1.1    tls 	}
    295      1.1    tls 	if (flags & RECYCLE) {
    296      1.1    tls 		for (ep = elem + nelem; ep < lp; ep++)
    297      1.1    tls 			*ep = *(ep - nelem);
    298      1.1    tls 		nelem = lp - elem;
    299      1.1    tls 	}
    300      1.1    tls 	if (!(colwidths = (short *) malloc(ocols * sizeof(short))))
    301      1.3     pk 		errx(1, "malloc:  No gutter space");
    302      1.1    tls 	if (flags & SQUEEZE) {
    303      1.1    tls 		if (flags & TRANSPOSE)
    304      1.1    tls 			for (ep = elem, i = 0; i < ocols; i++) {
    305      1.1    tls 				for (j = 0; j < orows; j++)
    306      1.1    tls 					if ((n = strlen(*ep++)) > max)
    307      1.1    tls 						max = n;
    308      1.1    tls 				colwidths[i] = max + gutter;
    309      1.1    tls 			}
    310      1.1    tls 		else
    311      1.1    tls 			for (i = 0; i < ocols; i++) {
    312      1.1    tls 				for (j = i; j < nelem; j += ocols)
    313      1.1    tls 					if ((n = strlen(ep[j])) > max)
    314      1.1    tls 						max = n;
    315      1.1    tls 				colwidths[i] = max + gutter;
    316      1.1    tls 			}
    317      1.1    tls 	}
    318      1.1    tls 	/*	for (i = 0; i < orows; i++) {
    319      1.1    tls 			for (j = i; j < nelem; j += orows)
    320      1.1    tls 				prints(ep[j], (j - i) / orows);
    321      1.1    tls 			putchar('\n');
    322      1.1    tls 		}
    323      1.1    tls 	else
    324      1.1    tls 		for (i = 0; i < orows; i++) {
    325      1.1    tls 			for (j = 0; j < ocols; j++)
    326      1.1    tls 				prints(*ep++, j);
    327      1.1    tls 			putchar('\n');
    328      1.1    tls 		}*/
    329      1.1    tls 	else
    330      1.1    tls 		for (i = 0; i < ocols; i++)
    331      1.1    tls 			colwidths[i] = colw;
    332      1.1    tls 	if (!(flags & NOTRIMENDCOL)) {
    333      1.1    tls 		if (flags & RIGHTADJUST)
    334      1.1    tls 			colwidths[0] -= gutter;
    335      1.1    tls 		else
    336      1.1    tls 			colwidths[ocols - 1] = 0;
    337      1.1    tls 	}
    338      1.1    tls 	n = orows * ocols;
    339      1.1    tls 	if (n > nelem && (flags & RECYCLE))
    340      1.1    tls 		nelem = n;
    341      1.1    tls 	/*for (i = 0; i < ocols; i++)
    342      1.1    tls 		fprintf(stderr, "%d ",colwidths[i]);
    343      1.1    tls 	fprintf(stderr, "is colwidths, nelem %d\n", nelem);*/
    344      1.1    tls }
    345      1.1    tls 
    346      1.1    tls #define	BSIZE	2048
    347      1.1    tls char	ibuf[BSIZE];		/* two screenfuls should do */
    348      1.1    tls 
    349      1.1    tls int
    350      1.1    tls getline()	/* get line; maintain curline, curlen; manage storage */
    351      1.1    tls {
    352      1.1    tls 	static	int putlength;
    353      1.1    tls 	static	char *endblock = ibuf + BSIZE;
    354      1.4  lukem 	char *p;
    355      1.4  lukem 	int c, i;
    356      1.1    tls 
    357      1.1    tls 	if (!irows) {
    358      1.1    tls 		curline = ibuf;
    359      1.1    tls 		putlength = flags & DETAILSHAPE;
    360      1.1    tls 	}
    361      1.1    tls 	else if (skip <= 0) {			/* don't waste storage */
    362      1.1    tls 		curline += curlen + 1;
    363      1.1    tls 		if (putlength)		/* print length, recycle storage */
    364      1.1    tls 			printf(" %d line %d\n", curlen, irows);
    365      1.1    tls 	}
    366      1.1    tls 	if (!putlength && endblock - curline < BUFSIZ) {   /* need storage */
    367      1.1    tls 		/*ww = endblock-curline; tt += ww;*/
    368      1.1    tls 		/*printf("#wasted %d total %d\n",ww,tt);*/
    369      1.1    tls 		if (!(curline = (char *) malloc(BSIZE)))
    370      1.3     pk 			errx(1, "File too large");
    371      1.1    tls 		endblock = curline + BSIZE;
    372      1.1    tls 		/*printf("#endb %d curline %d\n",endblock,curline);*/
    373      1.1    tls 	}
    374      1.1    tls 	for (p = curline, i = 1; i < BUFSIZ; *p++ = c, i++)
    375      1.1    tls 		if ((c = getchar()) == EOF || c == '\n')
    376      1.1    tls 			break;
    377      1.1    tls 	*p = '\0';
    378      1.1    tls 	curlen = i - 1;
    379      1.1    tls 	return(c);
    380      1.1    tls }
    381      1.1    tls 
    382      1.1    tls char **
    383      1.1    tls getptrs(sp)
    384      1.1    tls 	char **sp;
    385      1.1    tls {
    386      1.4  lukem 	char **p;
    387      1.1    tls 
    388      1.3     pk 	allocsize += allocsize;
    389      1.3     pk 	p = (char **)realloc(elem, allocsize * sizeof(char *));
    390      1.3     pk 	if (p == (char **)0)
    391      1.3     pk 		err(1, "no memory");
    392      1.3     pk 
    393      1.3     pk 	sp += (p - elem);
    394      1.3     pk 	endelem = (elem = p) + allocsize;
    395      1.3     pk 	return(sp);
    396      1.1    tls }
    397      1.1    tls 
    398      1.1    tls void
    399      1.1    tls getargs(ac, av)
    400      1.1    tls 	int ac;
    401      1.1    tls 	char *av[];
    402      1.1    tls {
    403      1.4  lukem 	char *p;
    404      1.1    tls 
    405      1.1    tls 	if (ac == 1) {
    406      1.1    tls 		flags |= NOARGS | TRANSPOSE;
    407      1.1    tls 	}
    408      1.1    tls 	while (--ac && **++av == '-')
    409      1.1    tls 		for (p = *av+1; *p; p++)
    410      1.1    tls 			switch (*p) {
    411      1.1    tls 			case 'T':
    412      1.1    tls 				flags |= MTRANSPOSE;
    413      1.1    tls 			case 't':
    414      1.1    tls 				flags |= TRANSPOSE;
    415      1.1    tls 				break;
    416      1.1    tls 			case 'c':		/* input col. separator */
    417      1.1    tls 				flags |= ONEISEPONLY;
    418      1.1    tls 			case 's':		/* one or more allowed */
    419      1.1    tls 				if (p[1])
    420      1.1    tls 					isep = *++p;
    421      1.1    tls 				else
    422      1.1    tls 					isep = '\t';	/* default is ^I */
    423      1.1    tls 				break;
    424      1.1    tls 			case 'C':
    425      1.1    tls 				flags |= ONEOSEPONLY;
    426      1.1    tls 			case 'S':
    427      1.1    tls 				if (p[1])
    428      1.1    tls 					osep = *++p;
    429      1.1    tls 				else
    430      1.1    tls 					osep = '\t';	/* default is ^I */
    431      1.1    tls 				break;
    432      1.1    tls 			case 'w':		/* window width, default 80 */
    433      1.1    tls 				p = getnum(&owidth, p, 0);
    434      1.1    tls 				if (owidth <= 0)
    435  1.4.4.1     he 				usage("Width must be a positive integer");
    436      1.1    tls 				break;
    437      1.1    tls 			case 'K':			/* skip N lines */
    438      1.1    tls 				flags |= SKIPPRINT;
    439      1.1    tls 			case 'k':			/* skip, do not print */
    440      1.1    tls 				p = getnum(&skip, p, 0);
    441      1.1    tls 				if (!skip)
    442      1.1    tls 					skip = 1;
    443      1.1    tls 				break;
    444      1.1    tls 			case 'm':
    445      1.1    tls 				flags |= NOTRIMENDCOL;
    446      1.1    tls 				break;
    447      1.1    tls 			case 'g':		/* gutter space */
    448      1.1    tls 				p = getnum(&gutter, p, 0);
    449      1.1    tls 				break;
    450      1.1    tls 			case 'G':
    451      1.1    tls 				p = getnum(&propgutter, p, 0);
    452      1.1    tls 				break;
    453      1.1    tls 			case 'e':		/* each line is an entry */
    454      1.1    tls 				flags |= ONEPERLINE;
    455      1.1    tls 				break;
    456      1.1    tls 			case 'E':
    457      1.1    tls 				flags |= ONEPERCHAR;
    458      1.1    tls 				break;
    459      1.1    tls 			case 'j':			/* right adjust */
    460      1.1    tls 				flags |= RIGHTADJUST;
    461      1.1    tls 				break;
    462      1.1    tls 			case 'n':	/* null padding for missing values */
    463      1.1    tls 				flags |= NULLPAD;
    464      1.1    tls 				break;
    465      1.1    tls 			case 'y':
    466      1.1    tls 				flags |= RECYCLE;
    467      1.1    tls 				break;
    468      1.1    tls 			case 'H':			/* print shape only */
    469      1.1    tls 				flags |= DETAILSHAPE;
    470      1.1    tls 			case 'h':
    471      1.1    tls 				flags |= SHAPEONLY;
    472      1.1    tls 				break;
    473      1.1    tls 			case 'z':			/* squeeze col width */
    474      1.1    tls 				flags |= SQUEEZE;
    475      1.1    tls 				break;
    476      1.1    tls 			/*case 'p':
    477      1.1    tls 				ipagespace = atoi(++p);	(default is 1)
    478      1.1    tls 				break;*/
    479      1.1    tls 			case 'o':			/* col order */
    480      1.1    tls 				p = getlist(&cord, p);
    481      1.1    tls 				break;
    482      1.1    tls 			case 'b':
    483      1.1    tls 				flags |= ICOLBOUNDS;
    484      1.1    tls 				p = getlist(&icbd, p);
    485      1.1    tls 				break;
    486      1.1    tls 			case 'B':
    487      1.1    tls 				flags |= OCOLBOUNDS;
    488      1.1    tls 				p = getlist(&ocbd, p);
    489      1.1    tls 				break;
    490      1.1    tls 			default:
    491      1.3     pk 				usage("Bad flag:  %.1s", p);
    492      1.1    tls 			}
    493      1.1    tls 	/*if (!osep)
    494      1.1    tls 		osep = isep;*/
    495      1.1    tls 	switch (ac) {
    496      1.1    tls 	/*case 3:
    497      1.1    tls 		opages = atoi(av[2]);*/
    498      1.1    tls 	case 2:
    499      1.1    tls 		ocols = atoi(av[1]);
    500      1.1    tls 	case 1:
    501      1.1    tls 		orows = atoi(av[0]);
    502      1.1    tls 	case 0:
    503      1.1    tls 		break;
    504      1.1    tls 	default:
    505  1.4.4.1     he 		usage("Too many arguments.");
    506      1.1    tls 	}
    507      1.1    tls }
    508      1.1    tls 
    509      1.1    tls char *
    510      1.1    tls getlist(list, p)
    511      1.1    tls 	short **list;
    512      1.1    tls 	char *p;
    513      1.1    tls {
    514      1.4  lukem 	int count = 1;
    515      1.4  lukem 	char *t;
    516      1.1    tls 
    517      1.1    tls 	for (t = p + 1; *t; t++) {
    518      1.1    tls 		if (!isdigit(*t))
    519      1.3     pk 			usage("Option %.1s requires a list of unsigned numbers separated by commas", t);
    520      1.1    tls 		count++;
    521      1.1    tls 		while (*t && isdigit(*t))
    522      1.1    tls 			t++;
    523      1.1    tls 		if (*t != ',')
    524      1.1    tls 			break;
    525      1.1    tls 	}
    526      1.1    tls 	if (!(*list = (short *) malloc(count * sizeof(short))))
    527      1.3     pk 		errx(1, "No list space");
    528      1.1    tls 	count = 0;
    529      1.1    tls 	for (t = p + 1; *t; t++) {
    530      1.1    tls 		(*list)[count++] = atoi(t);
    531      1.1    tls 		printf("++ %d ", (*list)[count-1]);
    532      1.1    tls 		fflush(stdout);
    533      1.1    tls 		while (*t && isdigit(*t))
    534      1.1    tls 			t++;
    535      1.1    tls 		if (*t != ',')
    536      1.1    tls 			break;
    537      1.1    tls 	}
    538      1.1    tls 	(*list)[count] = 0;
    539      1.1    tls 	return(t - 1);
    540      1.1    tls }
    541      1.1    tls 
    542      1.1    tls char *
    543      1.1    tls getnum(num, p, strict)	/* num = number p points to; if (strict) complain */
    544      1.1    tls 	int *num, strict;	/* returns pointer to end of num */
    545      1.1    tls 	char *p;
    546      1.1    tls {
    547      1.4  lukem 	char *t = p;
    548      1.1    tls 
    549      1.1    tls 	if (!isdigit(*++t)) {
    550      1.1    tls 		if (strict || *t == '-' || *t == '+')
    551      1.3     pk 			usage("Option %.1s requires an unsigned integer", p);
    552      1.1    tls 		*num = 0;
    553      1.1    tls 		return(p);
    554      1.1    tls 	}
    555      1.1    tls 	*num = atoi(t);
    556      1.1    tls 	while (*++t)
    557      1.1    tls 		if (!isdigit(*t))
    558      1.1    tls 			break;
    559      1.1    tls 	return(--t);
    560      1.1    tls }
    561