1: #
2:
3: /*
4: ** BUF.H -- buffer definitions
5: **
6: ** Version:
7: ** @(#)buf.h 8.1 12/31/84
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
Defined struct's
buf
defined in line
12; used 52 times
- in line 14(2)
- in /usr/ingres/source/monitor/buf.c line
22-26(8),
34(2),
50-54(6),
86-90(8),
112-115(6),
141(2),
154-157(4)
- in /usr/ingres/source/monitor/mac.c line
106-107(4),
642(2),
873(2),
1236(2),
1339(2),
1827(2)
Defined macros
NULL
defined in line
20; used 2 times
Usage of this include