Systemd/src/basic/pager.h

13 lines
255 B
C
Raw Normal View History

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
#include <stdbool.h>
#include "macro.h"
int pager_open(bool no_pager, bool jump_to_end);
void pager_close(void);
bool pager_have(void) _pure_;
2014-07-21 00:23:53 +02:00
int show_man_page(const char *page, bool null_stdio);