home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / ABUSESRC.ZIP / AbuseSrc / macabuse / src / lcache2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-20  |  360 b   |  20 lines

  1. #include "lisp.hpp"
  2. #include "specs.hpp"
  3.  
  4. // stubs... (not called)
  5. // andrew put your caching system here when you get it working.
  6.  
  7. long block_size(Cell *level)               // return number of bytes to save this block of code
  8. { return 0; }
  9.  
  10. void write_level(bFILE *fp, Cell *level)
  11. { ; }
  12.  
  13. Cell *load_block(bFILE *fp)
  14. { return NULL; }
  15.  
  16.  
  17.  
  18.  
  19.  
  20.