home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************/
- /* */
- /* CACHE.H */
- /* */
- /* Function prototypes, etc. for CACHE.C */
- /* */
- /* By David Skoll - 15 November 1990 */
- /* */
- /***************************************************************/
- #ifdef __STDC__
- void InitCache(void);
- int GetLine(void);
- void ResetCache(void);
- void DestroyCache(void);
- #else
- void InitCache();
- int GetLine();
- void ResetCache();
- void DestroyCache();
- #endif
-