3 /* man.h: Defines and external function declarations for man.c.
4 Id: man.h,v 1.3 2004/04/11 17:56:46 karl Exp
6 This file is part of GNU Info, a program for reading online documentation
9 Copyright (C) 1993, 1997, 2004 Free Software Foundation, Inc.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 Author: Brian J. Fox (bfox@ai.mit.edu) Sat May 6 16:19:13 1995. */
30 #define MANPAGE_FILE_BUFFER_NAME "*manpages*"
32 extern NODE
*make_manpage_node (char *pagename
);
33 extern NODE
*get_manpage_node (FILE_BUFFER
*file_buffer
,
35 extern FILE_BUFFER
*create_manpage_file_buffer (void);
36 extern long locate_manpage_xref (NODE
*node
, long int start
, int dir
);
37 extern REFERENCE
**xrefs_of_manpage (NODE
*node
);
38 extern REFERENCE
**manpage_xrefs_in_binding (NODE
*node
,
39 SEARCH_BINDING
*binding
);
41 #endif /* INFO_MAN_H */