https://github.com/git/git
Revision 0f158320593bd57fe2c3fe55fbce751e9415ffc2 authored by Johannes Schindelin on 10 April 2024, 19:06:57 UTC, committed by Johannes Schindelin on 19 April 2024, 10:38:43 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent f5b2af0
Raw File
Tip revision: 0f158320593bd57fe2c3fe55fbce751e9415ffc2 authored by Johannes Schindelin on 10 April 2024, 19:06:57 UTC
Git 2.41.1
Tip revision: 0f15832
pager.h
#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 */
back to top