This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
piquant/src/screen.h

13 lines
214 B
C

#ifndef _SCREEN_H_
#define _SCREEN_H_
extern char _cursor_x;
extern char _cursor_y;
void setCursorPosition(char x, char y);
void backupCursor();
void advanceCursor();
void blankScreen();
#endif /* _SCREEN_H_ */