xref: /freebsd/usr.bin/hexdump/display.c (revision f4ac32def255b5968bdd8150057b9c0d14595689)
19b50d902SRodney W. Grimes /*
29b50d902SRodney W. Grimes  * Copyright (c) 1989, 1993
39b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
49b50d902SRodney W. Grimes  *
59b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
69b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
79b50d902SRodney W. Grimes  * are met:
89b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
99b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
109b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
119b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
129b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
139b50d902SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
149b50d902SRodney W. Grimes  *    must display the following acknowledgement:
159b50d902SRodney W. Grimes  *	This product includes software developed by the University of
169b50d902SRodney W. Grimes  *	California, Berkeley and its contributors.
179b50d902SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
189b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
199b50d902SRodney W. Grimes  *    without specific prior written permission.
209b50d902SRodney W. Grimes  *
219b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
229b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
239b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
249b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
259b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
269b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
279b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
289b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
299b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
309b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
319b50d902SRodney W. Grimes  * SUCH DAMAGE.
329b50d902SRodney W. Grimes  */
339b50d902SRodney W. Grimes 
349b50d902SRodney W. Grimes #ifndef lint
3510731702SPhilippe Charnier #if 0
369b50d902SRodney W. Grimes static char sccsid[] = "@(#)display.c	8.1 (Berkeley) 6/6/93";
3710731702SPhilippe Charnier #endif
389b50d902SRodney W. Grimes #endif /* not lint */
39e026a48cSDavid E. O'Brien #include <sys/cdefs.h>
40e026a48cSDavid E. O'Brien __FBSDID("$FreeBSD$");
419b50d902SRodney W. Grimes 
429b50d902SRodney W. Grimes #include <sys/param.h>
439b50d902SRodney W. Grimes #include <sys/stat.h>
449b50d902SRodney W. Grimes 
459b50d902SRodney W. Grimes #include <ctype.h>
4610731702SPhilippe Charnier #include <err.h>
479b50d902SRodney W. Grimes #include <stdio.h>
489b50d902SRodney W. Grimes #include <stdlib.h>
499b50d902SRodney W. Grimes #include <string.h>
5010731702SPhilippe Charnier #include <unistd.h>
519b50d902SRodney W. Grimes #include "hexdump.h"
529b50d902SRodney W. Grimes 
539b50d902SRodney W. Grimes enum _vflag vflag = FIRST;
549b50d902SRodney W. Grimes 
559b50d902SRodney W. Grimes static off_t address;			/* address/offset in stream */
569b50d902SRodney W. Grimes static off_t eaddress;			/* end address */
579b50d902SRodney W. Grimes 
588bd89d7eSMark Murray static __inline void print(PR *, u_char *);
599b50d902SRodney W. Grimes 
609b50d902SRodney W. Grimes void
61f4ac32deSDavid Malone display(void)
629b50d902SRodney W. Grimes {
63f4ac32deSDavid Malone 	FS *fs;
64f4ac32deSDavid Malone 	FU *fu;
65f4ac32deSDavid Malone 	PR *pr;
66f4ac32deSDavid Malone 	int cnt;
67f4ac32deSDavid Malone 	u_char *bp;
689b50d902SRodney W. Grimes 	off_t saveaddress;
699b50d902SRodney W. Grimes 	u_char savech, *savebp;
709b50d902SRodney W. Grimes 
71c38cc743SMark Murray 	while ((bp = get()))
729b50d902SRodney W. Grimes 	    for (fs = fshead, savebp = bp, saveaddress = address; fs;
739b50d902SRodney W. Grimes 		fs = fs->nextfs, bp = savebp, address = saveaddress)
749b50d902SRodney W. Grimes 		    for (fu = fs->nextfu; fu; fu = fu->nextfu) {
759b50d902SRodney W. Grimes 			if (fu->flags&F_IGNORE)
769b50d902SRodney W. Grimes 				break;
779b50d902SRodney W. Grimes 			for (cnt = fu->reps; cnt; --cnt)
789b50d902SRodney W. Grimes 			    for (pr = fu->nextpr; pr; address += pr->bcnt,
799b50d902SRodney W. Grimes 				bp += pr->bcnt, pr = pr->nextpr) {
809b50d902SRodney W. Grimes 				    if (eaddress && address >= eaddress &&
819b50d902SRodney W. Grimes 					!(pr->flags & (F_TEXT|F_BPAD)))
829b50d902SRodney W. Grimes 					    bpad(pr);
839b50d902SRodney W. Grimes 				    if (cnt == 1 && pr->nospace) {
849b50d902SRodney W. Grimes 					savech = *pr->nospace;
859b50d902SRodney W. Grimes 					*pr->nospace = '\0';
869b50d902SRodney W. Grimes 				    }
879b50d902SRodney W. Grimes 				    print(pr, bp);
889b50d902SRodney W. Grimes 				    if (cnt == 1 && pr->nospace)
899b50d902SRodney W. Grimes 					*pr->nospace = savech;
909b50d902SRodney W. Grimes 			    }
919b50d902SRodney W. Grimes 		    }
929b50d902SRodney W. Grimes 	if (endfu) {
939b50d902SRodney W. Grimes 		/*
949b50d902SRodney W. Grimes 		 * If eaddress not set, error or file size was multiple of
959b50d902SRodney W. Grimes 		 * blocksize, and no partial block ever found.
969b50d902SRodney W. Grimes 		 */
979b50d902SRodney W. Grimes 		if (!eaddress) {
989b50d902SRodney W. Grimes 			if (!address)
999b50d902SRodney W. Grimes 				return;
1009b50d902SRodney W. Grimes 			eaddress = address;
1019b50d902SRodney W. Grimes 		}
1029b50d902SRodney W. Grimes 		for (pr = endfu->nextpr; pr; pr = pr->nextpr)
1039b50d902SRodney W. Grimes 			switch(pr->flags) {
1049b50d902SRodney W. Grimes 			case F_ADDRESS:
1059b50d902SRodney W. Grimes 				(void)printf(pr->fmt, (quad_t)eaddress);
1069b50d902SRodney W. Grimes 				break;
1079b50d902SRodney W. Grimes 			case F_TEXT:
10832d9afb6SKris Kennaway 				(void)printf("%s", pr->fmt);
1099b50d902SRodney W. Grimes 				break;
1109b50d902SRodney W. Grimes 			}
1119b50d902SRodney W. Grimes 	}
1129b50d902SRodney W. Grimes }
1139b50d902SRodney W. Grimes 
1148bd89d7eSMark Murray static __inline void
115f4ac32deSDavid Malone print(PR *pr, u_char *bp)
1169b50d902SRodney W. Grimes {
11782866376STim J. Robbins 	long double ldbl;
1189b50d902SRodney W. Grimes 	   double f8;
1199b50d902SRodney W. Grimes 	    float f4;
1209b50d902SRodney W. Grimes 	  int16_t s2;
1219b50d902SRodney W. Grimes 	   int8_t s8;
1229b50d902SRodney W. Grimes 	  int32_t s4;
1239b50d902SRodney W. Grimes 	u_int16_t u2;
1249b50d902SRodney W. Grimes 	u_int32_t u4;
1259b50d902SRodney W. Grimes 	u_int64_t u8;
1269b50d902SRodney W. Grimes 
1279b50d902SRodney W. Grimes 	switch(pr->flags) {
1289b50d902SRodney W. Grimes 	case F_ADDRESS:
1299b50d902SRodney W. Grimes 		(void)printf(pr->fmt, (quad_t)address);
1309b50d902SRodney W. Grimes 		break;
1319b50d902SRodney W. Grimes 	case F_BPAD:
1329b50d902SRodney W. Grimes 		(void)printf(pr->fmt, "");
1339b50d902SRodney W. Grimes 		break;
1349b50d902SRodney W. Grimes 	case F_C:
1359b50d902SRodney W. Grimes 		conv_c(pr, bp);
1369b50d902SRodney W. Grimes 		break;
1379b50d902SRodney W. Grimes 	case F_CHAR:
1389b50d902SRodney W. Grimes 		(void)printf(pr->fmt, *bp);
1399b50d902SRodney W. Grimes 		break;
1409b50d902SRodney W. Grimes 	case F_DBL:
1419b50d902SRodney W. Grimes 		switch(pr->bcnt) {
1429b50d902SRodney W. Grimes 		case 4:
1439b50d902SRodney W. Grimes 			bcopy(bp, &f4, sizeof(f4));
1449b50d902SRodney W. Grimes 			(void)printf(pr->fmt, f4);
1459b50d902SRodney W. Grimes 			break;
1469b50d902SRodney W. Grimes 		case 8:
1479b50d902SRodney W. Grimes 			bcopy(bp, &f8, sizeof(f8));
1489b50d902SRodney W. Grimes 			(void)printf(pr->fmt, f8);
1499b50d902SRodney W. Grimes 			break;
150cf021af2STim J. Robbins 		default:
151cf021af2STim J. Robbins 			if (pr->bcnt == sizeof(long double)) {
15282866376STim J. Robbins 				bcopy(bp, &ldbl, sizeof(ldbl));
15382866376STim J. Robbins 				(void)printf(pr->fmt, ldbl);
154cf021af2STim J. Robbins 			}
15582866376STim J. Robbins 			break;
1569b50d902SRodney W. Grimes 		}
1579b50d902SRodney W. Grimes 		break;
1589b50d902SRodney W. Grimes 	case F_INT:
1599b50d902SRodney W. Grimes 		switch(pr->bcnt) {
1609b50d902SRodney W. Grimes 		case 1:
161cf45dcc8STim J. Robbins 			(void)printf(pr->fmt, (quad_t)(signed char)*bp);
1629b50d902SRodney W. Grimes 			break;
1639b50d902SRodney W. Grimes 		case 2:
1649b50d902SRodney W. Grimes 			bcopy(bp, &s2, sizeof(s2));
1659b50d902SRodney W. Grimes 			(void)printf(pr->fmt, (quad_t)s2);
1669b50d902SRodney W. Grimes 			break;
1679b50d902SRodney W. Grimes 		case 4:
1689b50d902SRodney W. Grimes 			bcopy(bp, &s4, sizeof(s4));
1699b50d902SRodney W. Grimes 			(void)printf(pr->fmt, (quad_t)s4);
1709b50d902SRodney W. Grimes 			break;
1719b50d902SRodney W. Grimes 		case 8:
1729b50d902SRodney W. Grimes 			bcopy(bp, &s8, sizeof(s8));
1739b50d902SRodney W. Grimes 			(void)printf(pr->fmt, s8);
1749b50d902SRodney W. Grimes 			break;
1759b50d902SRodney W. Grimes 		}
1769b50d902SRodney W. Grimes 		break;
1779b50d902SRodney W. Grimes 	case F_P:
1789b50d902SRodney W. Grimes 		(void)printf(pr->fmt, isprint(*bp) ? *bp : '.');
1799b50d902SRodney W. Grimes 		break;
1809b50d902SRodney W. Grimes 	case F_STR:
1819b50d902SRodney W. Grimes 		(void)printf(pr->fmt, (char *)bp);
1829b50d902SRodney W. Grimes 		break;
1839b50d902SRodney W. Grimes 	case F_TEXT:
1843d3f014fSKris Kennaway 		(void)printf("%s", pr->fmt);
1859b50d902SRodney W. Grimes 		break;
1869b50d902SRodney W. Grimes 	case F_U:
1879b50d902SRodney W. Grimes 		conv_u(pr, bp);
1889b50d902SRodney W. Grimes 		break;
1899b50d902SRodney W. Grimes 	case F_UINT:
1909b50d902SRodney W. Grimes 		switch(pr->bcnt) {
1919b50d902SRodney W. Grimes 		case 1:
1929b50d902SRodney W. Grimes 			(void)printf(pr->fmt, (u_quad_t)*bp);
1939b50d902SRodney W. Grimes 			break;
1949b50d902SRodney W. Grimes 		case 2:
1959b50d902SRodney W. Grimes 			bcopy(bp, &u2, sizeof(u2));
1969b50d902SRodney W. Grimes 			(void)printf(pr->fmt, (u_quad_t)u2);
1979b50d902SRodney W. Grimes 			break;
1989b50d902SRodney W. Grimes 		case 4:
1999b50d902SRodney W. Grimes 			bcopy(bp, &u4, sizeof(u4));
2009b50d902SRodney W. Grimes 			(void)printf(pr->fmt, (u_quad_t)u4);
2019b50d902SRodney W. Grimes 			break;
2029b50d902SRodney W. Grimes 		case 8:
2039b50d902SRodney W. Grimes 			bcopy(bp, &u8, sizeof(u8));
2049b50d902SRodney W. Grimes 			(void)printf(pr->fmt, u8);
2059b50d902SRodney W. Grimes 			break;
2069b50d902SRodney W. Grimes 		}
2079b50d902SRodney W. Grimes 		break;
2089b50d902SRodney W. Grimes 	}
2099b50d902SRodney W. Grimes }
2109b50d902SRodney W. Grimes 
2119b50d902SRodney W. Grimes void
212f4ac32deSDavid Malone bpad(PR *pr)
2139b50d902SRodney W. Grimes {
21466da3588SDavid E. O'Brien 	static char const *spec = " -0+#";
215f4ac32deSDavid Malone 	char *p1, *p2;
2169b50d902SRodney W. Grimes 
2179b50d902SRodney W. Grimes 	/*
2189b50d902SRodney W. Grimes 	 * Remove all conversion flags; '-' is the only one valid
2199b50d902SRodney W. Grimes 	 * with %s, and it's not useful here.
2209b50d902SRodney W. Grimes 	 */
2219b50d902SRodney W. Grimes 	pr->flags = F_BPAD;
2229b50d902SRodney W. Grimes 	pr->cchar[0] = 's';
2239b50d902SRodney W. Grimes 	pr->cchar[1] = '\0';
2249b50d902SRodney W. Grimes 	for (p1 = pr->fmt; *p1 != '%'; ++p1);
2259b50d902SRodney W. Grimes 	for (p2 = ++p1; *p1 && index(spec, *p1); ++p1);
226c38cc743SMark Murray 	while ((*p2++ = *p1++));
2279b50d902SRodney W. Grimes }
2289b50d902SRodney W. Grimes 
2299b50d902SRodney W. Grimes static char **_argv;
2309b50d902SRodney W. Grimes 
2319b50d902SRodney W. Grimes u_char *
232f4ac32deSDavid Malone get(void)
2339b50d902SRodney W. Grimes {
2349b50d902SRodney W. Grimes 	static int ateof = 1;
2359b50d902SRodney W. Grimes 	static u_char *curp, *savp;
236f4ac32deSDavid Malone 	int n;
2379b50d902SRodney W. Grimes 	int need, nread;
238b001517fSMatthew Dillon 	int valid_save = 0;
2399b50d902SRodney W. Grimes 	u_char *tmpp;
2409b50d902SRodney W. Grimes 
2419b50d902SRodney W. Grimes 	if (!curp) {
242ac3c230cSDavid E. O'Brien 		if ((curp = calloc(1, blocksize)) == NULL)
243ac3c230cSDavid E. O'Brien 			err(1, NULL);
244ac3c230cSDavid E. O'Brien 		if ((savp = calloc(1, blocksize)) == NULL)
245ac3c230cSDavid E. O'Brien 			err(1, NULL);
2469b50d902SRodney W. Grimes 	} else {
2479b50d902SRodney W. Grimes 		tmpp = curp;
2489b50d902SRodney W. Grimes 		curp = savp;
2499b50d902SRodney W. Grimes 		savp = tmpp;
2509b50d902SRodney W. Grimes 		address += blocksize;
251b001517fSMatthew Dillon 		valid_save = 1;
2529b50d902SRodney W. Grimes 	}
2539b50d902SRodney W. Grimes 	for (need = blocksize, nread = 0;;) {
2549b50d902SRodney W. Grimes 		/*
2559b50d902SRodney W. Grimes 		 * if read the right number of bytes, or at EOF for one file,
2569b50d902SRodney W. Grimes 		 * and no other files are available, zero-pad the rest of the
2579b50d902SRodney W. Grimes 		 * block and set the end flag.
2589b50d902SRodney W. Grimes 		 */
259c38cc743SMark Murray 		if (!length || (ateof && !next((char **)NULL))) {
260cf021af2STim J. Robbins 			if (odmode && address < skip)
261cf021af2STim J. Robbins 				errx(1, "cannot skip past end of input");
2629b50d902SRodney W. Grimes 			if (need == blocksize)
2639b50d902SRodney W. Grimes 				return((u_char *)NULL);
264b001517fSMatthew Dillon 			if (vflag != ALL &&
265b001517fSMatthew Dillon 			    valid_save &&
266b001517fSMatthew Dillon 			    bcmp(curp, savp, nread) == 0) {
2679b50d902SRodney W. Grimes 				if (vflag != DUP)
2689b50d902SRodney W. Grimes 					(void)printf("*\n");
2699b50d902SRodney W. Grimes 				return((u_char *)NULL);
2709b50d902SRodney W. Grimes 			}
2719b50d902SRodney W. Grimes 			bzero((char *)curp + nread, need);
2729b50d902SRodney W. Grimes 			eaddress = address + nread;
2739b50d902SRodney W. Grimes 			return(curp);
2749b50d902SRodney W. Grimes 		}
2759b50d902SRodney W. Grimes 		n = fread((char *)curp + nread, sizeof(u_char),
2769b50d902SRodney W. Grimes 		    length == -1 ? need : MIN(length, need), stdin);
2779b50d902SRodney W. Grimes 		if (!n) {
2789b50d902SRodney W. Grimes 			if (ferror(stdin))
27910731702SPhilippe Charnier 				warn("%s", _argv[-1]);
2809b50d902SRodney W. Grimes 			ateof = 1;
2819b50d902SRodney W. Grimes 			continue;
2829b50d902SRodney W. Grimes 		}
2839b50d902SRodney W. Grimes 		ateof = 0;
2849b50d902SRodney W. Grimes 		if (length != -1)
2859b50d902SRodney W. Grimes 			length -= n;
2869b50d902SRodney W. Grimes 		if (!(need -= n)) {
2879b50d902SRodney W. Grimes 			if (vflag == ALL || vflag == FIRST ||
288b001517fSMatthew Dillon 			    valid_save == 0 ||
289b001517fSMatthew Dillon 			    bcmp(curp, savp, blocksize) != 0) {
2909b50d902SRodney W. Grimes 				if (vflag == DUP || vflag == FIRST)
2919b50d902SRodney W. Grimes 					vflag = WAIT;
2929b50d902SRodney W. Grimes 				return(curp);
2939b50d902SRodney W. Grimes 			}
2949b50d902SRodney W. Grimes 			if (vflag == WAIT)
2959b50d902SRodney W. Grimes 				(void)printf("*\n");
2969b50d902SRodney W. Grimes 			vflag = DUP;
2979b50d902SRodney W. Grimes 			address += blocksize;
2989b50d902SRodney W. Grimes 			need = blocksize;
2999b50d902SRodney W. Grimes 			nread = 0;
3009b50d902SRodney W. Grimes 		}
3019b50d902SRodney W. Grimes 		else
3029b50d902SRodney W. Grimes 			nread += n;
3039b50d902SRodney W. Grimes 	}
3049b50d902SRodney W. Grimes }
3059b50d902SRodney W. Grimes 
3069b50d902SRodney W. Grimes int
307f4ac32deSDavid Malone next(char **argv)
3089b50d902SRodney W. Grimes {
3099b50d902SRodney W. Grimes 	static int done;
3109b50d902SRodney W. Grimes 	int statok;
3119b50d902SRodney W. Grimes 
3129b50d902SRodney W. Grimes 	if (argv) {
3139b50d902SRodney W. Grimes 		_argv = argv;
3149b50d902SRodney W. Grimes 		return(1);
3159b50d902SRodney W. Grimes 	}
3169b50d902SRodney W. Grimes 	for (;;) {
3179b50d902SRodney W. Grimes 		if (*_argv) {
3189b50d902SRodney W. Grimes 			if (!(freopen(*_argv, "r", stdin))) {
31910731702SPhilippe Charnier 				warn("%s", *_argv);
3209b50d902SRodney W. Grimes 				exitval = 1;
3219b50d902SRodney W. Grimes 				++_argv;
3229b50d902SRodney W. Grimes 				continue;
3239b50d902SRodney W. Grimes 			}
3249b50d902SRodney W. Grimes 			statok = done = 1;
3259b50d902SRodney W. Grimes 		} else {
3269b50d902SRodney W. Grimes 			if (done++)
3279b50d902SRodney W. Grimes 				return(0);
3289b50d902SRodney W. Grimes 			statok = 0;
3299b50d902SRodney W. Grimes 		}
3309b50d902SRodney W. Grimes 		if (skip)
3319b50d902SRodney W. Grimes 			doskip(statok ? *_argv : "stdin", statok);
3329b50d902SRodney W. Grimes 		if (*_argv)
3339b50d902SRodney W. Grimes 			++_argv;
3349b50d902SRodney W. Grimes 		if (!skip)
3359b50d902SRodney W. Grimes 			return(1);
3369b50d902SRodney W. Grimes 	}
3379b50d902SRodney W. Grimes 	/* NOTREACHED */
3389b50d902SRodney W. Grimes }
3399b50d902SRodney W. Grimes 
3409b50d902SRodney W. Grimes void
341f4ac32deSDavid Malone doskip(const char *fname, int statok)
3429b50d902SRodney W. Grimes {
343f4ac32deSDavid Malone 	int cnt;
3449b50d902SRodney W. Grimes 	struct stat sb;
3459b50d902SRodney W. Grimes 
3469b50d902SRodney W. Grimes 	if (statok) {
3479b50d902SRodney W. Grimes 		if (fstat(fileno(stdin), &sb))
34810731702SPhilippe Charnier 			err(1, "%s", fname);
3499b50d902SRodney W. Grimes 		if (S_ISREG(sb.st_mode) && skip >= sb.st_size) {
3509b50d902SRodney W. Grimes 			address += sb.st_size;
3519b50d902SRodney W. Grimes 			skip -= sb.st_size;
3529b50d902SRodney W. Grimes 			return;
3539b50d902SRodney W. Grimes 		}
3549b50d902SRodney W. Grimes 	}
3559b50d902SRodney W. Grimes 	if (S_ISREG(sb.st_mode)) {
3567a27e657SAndrey A. Chernov 		if (fseeko(stdin, skip, SEEK_SET))
35710731702SPhilippe Charnier 			err(1, "%s", fname);
3589b50d902SRodney W. Grimes 		address += skip;
3599b50d902SRodney W. Grimes 		skip = 0;
3609b50d902SRodney W. Grimes 	} else {
3619b50d902SRodney W. Grimes 		for (cnt = 0; cnt < skip; ++cnt)
3629b50d902SRodney W. Grimes 			if (getchar() == EOF)
3639b50d902SRodney W. Grimes 				break;
3649b50d902SRodney W. Grimes 		address += cnt;
3659b50d902SRodney W. Grimes 		skip -= cnt;
3669b50d902SRodney W. Grimes 	}
3679b50d902SRodney W. Grimes }
368