test - Little program to list processes from coredumps or kmem.
[dragonfly.git] / contrib / texinfo / info / man.h
blob89377cbcbd0e3689a0cab630f9a7dd7da7b279fe
1 /* man.h: Defines and external function declarations for man.c.
2 $Id: man.h,v 1.6 2007/07/01 21:20:30 karl Exp $
4 This file is part of GNU Info, a program for reading online documentation
5 stored in Info format.
7 Copyright (C) 1993, 1997, 2004, 2007 Free Software Foundation, Inc.
9 This program is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 Author: Brian J. Fox (bfox@ai.mit.edu) Sat May 6 16:19:13 1995. */
24 #ifndef INFO_MAN_H
25 #define INFO_MAN_H
27 #define MANPAGE_FILE_BUFFER_NAME "*manpages*"
29 extern NODE *make_manpage_node (char *pagename);
30 extern NODE *get_manpage_node (FILE_BUFFER *file_buffer,
31 char *pagename);
32 extern FILE_BUFFER *create_manpage_file_buffer (void);
33 extern long locate_manpage_xref (NODE *node, long int start, int dir);
34 extern REFERENCE **xrefs_of_manpage (NODE *node);
35 extern REFERENCE **manpage_xrefs_in_binding (NODE *node,
36 SEARCH_BINDING *binding);
38 #endif /* INFO_MAN_H */