19 lines
496 B
C
19 lines
496 B
C
#ifndef H_ANSITERM_
|
|
#define H_ANSITERM_
|
|
|
|
#include "joey.h"
|
|
|
|
void termClearScreen(void);
|
|
void termDestruciveBackspace(bool dbs);
|
|
void termGetCursor(byte *x, byte *y);
|
|
void termHideTopLines(byte count);
|
|
void termMoveCursor(byte x, byte y);
|
|
void termPrint(char *string);
|
|
void termPrintChar(char c);
|
|
void termRepaint(void);
|
|
void termRestoreCursor(void);
|
|
void termSaveCursor(void);
|
|
void termStart(jlImgT *font, byte xoff, byte yoff, byte cols, byte rows);
|
|
void termStop(void);
|
|
|
|
#endif // _H_ANSITERM_
|