4.4BSD snapshot (revision 8.1); add 1993 to copyright
[unix-history] / usr / src / bin / dd / extern.h
CommitLineData
ad302565 1/*-
ba5e8546
KB
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
ad302565
KB
4 *
5 * This code is derived from software contributed to Berkeley by
a08a4cd0
KB
6 * Keith Muller of the University of California, San Diego and Lance
7 * Visser of Convex Computer Corporation.
ad302565
KB
8 *
9 * %sccs.include.redist.c%
10 *
ba5e8546 11 * @(#)extern.h 8.1 (Berkeley) %G%
ad302565
KB
12 */
13
14#include <sys/cdefs.h>
15
16void block __P((void));
17void block_close __P((void));
ad302565
KB
18void dd_out __P((int));
19void def __P((void));
20void def_close __P((void));
21void err __P((const char *, ...));
22void jcl __P((char **));
23void pos_in __P((void));
24void pos_out __P((void));
ad302565
KB
25void summary __P((int));
26void terminate __P((int));
27void unblock __P((void));
28void unblock_close __P((void));
29void warn __P((const char *, ...));
30
998e1ac9
KB
31extern IO in, out;
32extern STAT st;
ad302565
KB
33extern void (*cfunc)();
34extern u_long cpy_cnt;
35extern u_int cbsz;
36extern u_int ddflags;
37extern u_int files_cnt;
38extern u_char *ctab;
998e1ac9
KB
39extern u_char a2e_32V[], a2e_POSIX[], a2ibm_32V[], a2ibm_POSIX[], e2a_32V[];
40extern u_char e2a_POSIX[], l2u[], u2l[];