Rev | Line | |
---|
[9] | 1 | /* $Header: /cvsup/minix/src/lib/ack/h/pc_file.h,v 1.1 2005/10/10 15:27:44 beng 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 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.