1 /* $Id: decode.h,v 3.0 1991/11/22 04:12:25 davison Trn $
2  */
3 /* The authors make no claims as to the fitness or correctness of this software
4  * for any use whatsoever, and it is provided as is. Any use of this software
5  * is at the user's own risk.
6  */
7 
8 EXT FILE *decode_fp INIT(NULL);
9 EXT char decode_fname[MAXFILENAME];
10 EXT char decode_dest[MAXFILENAME];
11 EXT int decode_type;
12 
13 void decode_init _((void));
14 void decode_end _((void));
15 
16 void uud_start _((void));
17 int uudecode _((FILE*));
18 
19 void unship_init _((void));
20 int unship _((FILE*));
21 
22 #define UUDECODE 0
23 #define UNSHIP   1
24