home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 223_01 / grabuf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-12-31  |  384 b   |  16 lines

  1.  
  2. /*
  3. ** grabufc.c    by fas 8/30/84
  4. */
  5.  
  6. #include <stdio.h>
  7.  
  8.    static int buf;
  9.  
  10. grabuf() {
  11.  
  12.    if((buf = grabio) != NULL) return(buf+42);    
  13.    return(NULL);
  14. }
  15.  
  16.