home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / source / monitor / buf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1985-01-23  |  219 b   |  22 lines

  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
  22.