Revision c2b3f2b3cdbf5ad9feb978dd367d77561a1271f7 authored by Junio C Hamano on 02 July 2024, 16:04:10 UTC, committed by Junio C Hamano on 02 July 2024, 16:27:59 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2c2ddfb
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