]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/pager.h
b72d1745f31c34abd12bf2db2d490d58503a3a17
[thirdparty/systemd.git] / src / basic / pager.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 Copyright 2010 Lennart Poettering
6 ***/
7
8 #include <stdbool.h>
9
10 #include "macro.h"
11
12 int pager_open(bool no_pager, bool jump_to_end);
13 void pager_close(void);
14 bool pager_have(void) _pure_;
15
16 int show_man_page(const char *page, bool null_stdio);