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

Defined macros

BUFSIZE defined in line 10; used 2 times
NULL defined in line 20; used 2 times

Usage of this include

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