mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-16 21:10:58 +00:00
9 lines
213 B
C
9 lines
213 B
C
#ifndef __CHECKPOINT_H__
|
|
#define __CHECKPOINT_H__
|
|
|
|
// utility checkpoint functions
|
|
const char *checkpoint(sdtape &tape, const char *dir);
|
|
void restore(sdtape &tape, const char *dir, const char *filename);
|
|
|
|
#endif
|