16 lines
389 B
C
16 lines
389 B
C
#ifndef H_ANSITERM_
|
|
#define H_ANSITERM_
|
|
|
|
#include "joey.h"
|
|
|
|
void termClearScreen(void);
|
|
void termGetCursor(int *x, int *y);
|
|
void termMoveCursor(int x, int y);
|
|
void termPrint(char *string);
|
|
void termPrintChar(char c);
|
|
void termRestoreCursor(void);
|
|
void termSaveCursor(void);
|
|
void termStart(jlStaT *font, int xoff, int yoff, int cols, int rows);
|
|
void termStop(void);
|
|
|
|
#endif // _H_ANSITERM_
|