1: #
   2: 
   3: /*
   4: **  BUF.H -- buffer definitions
   5: */
   6: 
   7: # define    BUFSIZE     256
   8: 
   9: struct buf
  10: {
  11:     struct buf  *nextb;
  12:     char        buffer[BUFSIZE];
  13:     char        *ptr;
  14: };

Defined struct's

buf defined in line 9; used 54 times

Defined macros

BUFSIZE defined in line 7; used 2 times

Usage of this include

Last modified: 1980-12-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1928
Valid CSS Valid XHTML 1.0 Strict