Pristine Ack-5.5
[Ack-5.5.git] / h / pc_file.h
1 /* $Id: pc_file.h,v 1.5 1994/06/24 10:08:44 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 #define WRBIT   0100000
7 #define TXTBIT  040000
8 #define EOFBIT  020000
9 #define ELNBIT  010000
10 #define WINDOW  04000
11 #define MAGIC   0252
12
13 #define PC_BUFLEN       1024
14
15 struct file {
16         char    *ptr;
17         unsigned flags;
18         char    *fname;
19         int     ufd;
20         int     size;
21         int     count;
22         int     buflen;
23         char    bufadr[PC_BUFLEN];
24 };