prettyness police
[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 *
08ba8862 11 * @(#)extern.h 8.2 (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));
ad302565
KB
21void jcl __P((char **));
22void pos_in __P((void));
23void pos_out __P((void));
08ba8862
JSP
24void summary __P((void));
25void summaryx __P((int));
ad302565
KB
26void terminate __P((int));
27void unblock __P((void));
28void unblock_close __P((void));
ad302565 29
998e1ac9
KB
30extern IO in, out;
31extern STAT st;
ad302565
KB
32extern void (*cfunc)();
33extern u_long cpy_cnt;
34extern u_int cbsz;
35extern u_int ddflags;
36extern u_int files_cnt;
37extern u_char *ctab;
998e1ac9
KB
38extern u_char a2e_32V[], a2e_POSIX[], a2ibm_32V[], a2ibm_POSIX[], e2a_32V[];
39extern u_char e2a_POSIX[], l2u[], u2l[];