Many changes.
[funnysort.git] / congl.h
blob8717b20143a4f7c8a37240b9a97ca781e4a79888
1 #ifndef CONGL_H
2 #define CONGL_H
4 typedef enum {congl_black = 0, congl_red, congl_green, congl_yellow, congl_blue, congl_magenta, congl_cyan, congl_white} conglColor_t;
6 void conglMoveCursorUp(int ammount);
7 void conglMoveCursorDown(int ammount);
8 void conglMoveCursorRight(int ammount);
9 void conglMoveCursorLeft(int ammount);
10 void conglMoveCursor(int line, int column);
11 void conglClearScreen(void);
12 void conglSetBg(conglColor_t color);
13 void conglSetFg(conglColor_t color);
14 void conglReset(void);
15 void conglDrawChar(char ch);
16 void conglDrawCharFull(int line, int column, char ch, conglColor_t fg, conglColor_t bg);
18 #endif /* CONGL_H */