5 void conglMoveCursorUp (int ammount
)
7 printf("\e[%dA",ammount
);
11 void conglMoveCursorDown (int ammount
)
13 printf("\e[%dB",ammount
);
17 void conglMoveCursorRight (int ammount
)
19 printf("\e[%dC",ammount
);
23 void conglMoveCursorLeft (int ammount
)
25 printf("\e[%dD",ammount
);
29 void conglMoveCursor(int line
, int column
)
31 printf("\e[%d;%dH",line
, column
);
35 void conglClearScreen(void)
41 void conglSetBg(conglColor_t color
)
43 printf("\e[4%dm", color
);
47 void conglSetFg(conglColor_t color
)
49 printf("\e[3%dm", color
);
59 void conglDrawChar(char ch
)
65 void conglDrawCharFull(int line
, int column
, char ch
, conglColor_t fg
, conglColor_t bg
)
69 conglMoveCursor(line
, column
);
71 conglMoveCursor(line
, column
);