home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Complete Linux
/
Complete Linux.iso
/
docs
/
apps
/
database
/
ingres04.lzh
/
source
/
monitor
/
buf.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1985-01-23
|
219 b
|
22 lines
#
/*
** BUF.H -- buffer definitions
**
** Version:
** @(#)buf.h 8.1 12/31/84
*/
# define BUFSIZE 256
struct buf
{
struct buf *nextb;
char buffer[BUFSIZE];
char *ptr;
};
# ifndef NULL
# define NULL 0
# endif