mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 00:14:25 +00:00
35 lines
637 B
C
35 lines
637 B
C
|
|
/*
|
|
Copyright 1983
|
|
Alcyon Corporation
|
|
8716 Production Ave.
|
|
San Diego, CA 92121
|
|
|
|
@(#) iodec.h - Sep 12, 1983 REGULUS 4.1
|
|
*/
|
|
|
|
# define MAXFILES 15
|
|
|
|
struct fileps
|
|
{
|
|
char *buff; /* beginning of buffer */
|
|
char *bptr; /* current position */
|
|
int nchars; /* number of characters internal */
|
|
int bsize; /* size of buffer */
|
|
char eoferr; /* end of file flag */
|
|
char wrflag; /* mode flag */
|
|
char *pbuff; /* bottom of peek buffer */
|
|
};
|
|
|
|
struct fileps __filehdr[MAXFILES];
|
|
|
|
struct param
|
|
{
|
|
int bufsize; /* initial buffer size */
|
|
int peeksize; /* initial peek size */
|
|
};
|
|
|
|
extern struct param __param;
|
|
|
|
int __statbuf[MAXFILES];
|