You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
619 B
8 lines
619 B
void init_terminal_ncurses(char *const fg_color_string, char *const bg_color_string, |
|
int predef_fg_color, int predef_bg_color, int gradient, |
|
int gradient_count, char **gradient_colors, int gadient_discrete, int *width, int *height); |
|
void get_terminal_dim_ncurses(int *width, int *height); |
|
int draw_terminal_ncurses(int is_tty, int terminal_height, int terminal_width, int bars_count, |
|
int bar_width, int bar_spacing, int rest, const int f[200], |
|
int flastd[200], int gradient); |
|
void cleanup_terminal_ncurses(void);
|
|
|