1 /* $NetBSD: dump.c,v 1.1.1.2 2008/05/18 14:29:33 aymeric Exp $ */
4 * Copyright (c) 1992, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * %sccs.include.redist.c%
11 static char copyright
[] =
12 "%Z% Copyright (c) 1992, 1993, 1994\n\
13 The Regents of the University of California. All rights reserved.\n";
17 static char sccsid
[] = "Id: dump.c,v 8.1 1994/08/31 13:27:37 bostic Exp (Berkeley) Date: 1994/08/31 13:27:37";
31 if ((s = getc(fp)) == EOF) \
37 if ((ch = getc(fp)) == EOF) \
44 if ((ch = getc(fp)) == EOF) \
46 } while (ch != (t)); \
59 for (;;) { /* dump to end quote. */
60 if ((ch
= getc(fp
)) == EOF
)
66 if ((ch
= getc(fp
)) == EOF
)
82 for (; *argv
!= NULL
; ++argv
) {
83 if ((fp
= fopen(*argv
, "r")) == NULL
) {