home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / kaffeh / file.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  569b  |  22 lines

  1. /*
  2.  * file.h
  3.  * File support routines.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  12.  */
  13.  
  14. #ifndef __file_h
  15. #define __file_h
  16.  
  17. #define    readu1(c, f)    (*(c)) = getc(f)
  18. #define    readu2(c, f)    (*(c)) = (getc(f) << 8) | getc(f)
  19. #define    readu4(c, f)    (*(c)) = (getc(f) << 24)|(getc(f) << 16)|(getc(f) << 8)|getc(f)
  20.  
  21. #endif
  22.