home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume17
/
remind
/
part04
/
cache.h
next >
Wrap
C/C++ Source or Header
|
1991-02-19
|
785b
|
21 lines
/***************************************************************/
/* */
/* 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