Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pager.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b77433026dc7a338a496db0b3b8b6ea5eac1770e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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 */