Revision 0df2c180904f6b709766f9c24669a9d01543f915 authored by Junio C Hamano on 15 May 2023, 20:58:34 UTC, committed by Junio C Hamano on 15 May 2023, 20:59:07 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 15ba44f
Raw File
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