cc65-Chess/src/undo.h
StewBC df70999561 Set empty function prototypes to void
for example init() becomes init(void)
2020-01-20 16:42:43 -08:00

21 lines
318 B
C

/*
* undo.h
* cc65 Chess
*
* Created by Stefan Wessels, February 2014.
*
*/
#ifndef _UNDO_H_
#define _UNDO_H_
void undo_Init(void);
void undo_AddMove(void);
void undo_Undo(void);
void undo_Redo(void);
char undo_FindUndoLine(char linesBack);
char undo_CanUndo(void);
char undo_CanRedo(void);
#endif //_UNDO_H_