|
|
1.1 root 1: #
2:
3: /*
4: ** BUF.H -- buffer definitions
5: **
6: ** Version:
7: ** @(#)buf.h 7.1 2/5/81
8: */
9:
10: # define BUFSIZE 256
11:
12: struct buf
13: {
14: struct buf *nextb;
15: char buffer[BUFSIZE];
16: char *ptr;
17: };
18:
19: # ifndef NULL
20: # define NULL 0
21: # endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.