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.
17 lines
388 B
17 lines
388 B
#ifndef PAGER_H |
|
#define PAGER_H |
|
|
|
struct child_process; |
|
|
|
const char *git_pager(int stdout_is_tty); |
|
void setup_pager(void); |
|
int pager_in_use(void); |
|
int term_columns(void); |
|
void term_clear_line(void); |
|
int decimal_width(uintmax_t); |
|
int check_pager_config(const char *cmd); |
|
void prepare_pager_args(struct child_process *, const char *pager); |
|
|
|
extern int pager_use_color; |
|
|
|
#endif /* PAGER_H */
|
|
|