home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / remind23.lzh / remind.4 / cache.h next >
C/C++ Source or Header  |  1991-02-24  |  785b  |  21 lines

  1. /***************************************************************/
  2. /*                                                             */
  3. /*  CACHE.H                                                    */
  4. /*                                                             */
  5. /*  Function prototypes, etc. for CACHE.C                      */
  6. /*                                                             */
  7. /*  By David Skoll - 15 November 1990                          */
  8. /*                                                             */
  9. /***************************************************************/
  10. #ifdef __STDC__
  11. void InitCache(void);
  12. int GetLine(void);
  13. void ResetCache(void);
  14. void DestroyCache(void);
  15. #else
  16. void InitCache();
  17. int GetLine();
  18. void ResetCache();
  19. void DestroyCache();
  20. #endif
  21.